3v4l.org

run code in 300+ PHP versions simultaneously
<?php $i=1; $i1=1; $loop=1; echo'The first 30 numbers of the Fibonacci sequence are:</br>'; echo $i.'</br>'.$i1; while ($loop<30){ $i2 = $i + $i1; echo $i2.'</br>'; $i = $i1; $i1 = $i2; $loop = $loop + 1 } ?>
Output for 5.3.0 - 5.3.27, 5.4.0 - 5.4.20
Parse error: syntax error, unexpected '}' in /in/RWUrq on line 13
Process exited with code 255.

preferences:
180.75 ms | 1395 KiB | 56 Q