3v4l.org

run code in 300+ PHP versions simultaneously
<?php function *xrange($start, $end, $step = 1) { for ($i = $start; $i < $end; $i += $step) { yield $i; } } foreach (xrange(10, 20) as $i) { echo $i * 1000; }
Output for 5.4.0 - 5.4.11
Parse error: syntax error, unexpected '*', expecting identifier (T_STRING) or '(' in /in/6jJBU on line 2
Process exited with code 255.
Output for 5.3.0 - 5.3.21
Parse error: syntax error, unexpected '*', expecting T_STRING or '(' in /in/6jJBU on line 2
Process exited with code 255.

preferences:
183.92 ms | 1395 KiB | 41 Q