3v4l.org

run code in 300+ PHP versions simultaneously
<?php $total = 0; $list = array(8,1,7,-7,2,4,5,-14,0,1); for ($i=0;$i<=9;$i++) { if ($list[$i] >= 4) { $total = $total + $list[$i]; } } echo "The sum of the bigges is " $total; ?>
Output for 5.4.0 - 5.4.21
Parse error: syntax error, unexpected '$total' (T_VARIABLE), expecting ',' or ';' in /in/3q37e on line 9
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' in /in/3q37e on line 9
Process exited with code 255.

preferences:
169.93 ms | 1386 KiB | 57 Q