Recently updated to PHP 7.1 and start getting following error
Warning: A non-numeric value encountered in on line 29
Here is wha
Check if you're not incrementing with some variable that its value is an empty string like ''.
Example:
$total = ''; $integers = range(1, 5); foreach($integers as $integer) { $total += $integer; }