3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test() { echo 1; echo (yield 'a'); echo 2; yield 'b'; echo 3; yield 'c'; echo 4; yield 'd'; } $val = test(); $val->current(); ..$val->send('ok'); //echo "|" . $val->current() . "|"; //$val->send('yes'); //echo "|" . $val->current() . "|"; //$val->next(); //$val->current(); //$val->send('no'); //echo "|" . $val->current() . "|";
Output for 5.4.0 - 5.4.24
Parse error: syntax error, unexpected ''a'' (T_CONSTANT_ENCAPSED_STRING) in /in/LbvLd on line 6
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /in/LbvLd on line 6
Process exited with code 255.

preferences:
186.46 ms | 1395 KiB | 61 Q