3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gen1($a = 0) { $i = 0; while($i < 5) { yield $a; $a = $a + 1; $i = $i + 1; } return $a * 5; } function yf() { $res = yield from gen1(); $oth = yield from gen1($res); return $oth; } $g = yf(); foreach($g as $val) { var_dump($val); } var_dump($g->getReturn());
Output for git.master, git.master_jit, rfc.property-hooks
int(0) int(1) int(2) int(3) int(4) int(25) int(26) int(27) int(28) int(29) int(150)

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:
53.75 ms | 401 KiB | 8 Q