3v4l.org

run code in 500+ PHP versions simultaneously
<?php function naturalIntegers() { $i = 0; while (true) { yield $i++; } } foreach(naturalIntegers() as $i) { if ($i > 10) { break; } print $i.PHP_EOL; } print "finished\n";
Output for git.master_jit, git.master
0 1 2 3 4 5 6 7 8 9 10 finished

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
47.13 ms | 851 KiB | 4 Q