3v4l.org

run code in 300+ PHP versions simultaneously
<?php function mkGenerator(){ for($i = 0; $i <= 10; $i++) { echo "[$i]"; yield $i; } } function mkGenerator2(){ for($i = 10; $i <= 25; $i++) { echo "($i)"; yield $i; } } $generator1 = mkGenerator(); $generator2 = mkGenerator2(); $multiIterator = new \MultipleIterator(); $multiIterator->attachIterator($generator1); $multiIterator->attachIterator($generator2); foreach( $multiIterator as $data ) { var_export($data); echo ".\n"; }
Output for 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
[0](10)array ( 0 => 0, 1 => 10, ). [1](11)array ( 0 => 1, 1 => 11, ). [2](12)array ( 0 => 2, 1 => 12, ). [3](13)array ( 0 => 3, 1 => 13, ). [4](14)array ( 0 => 4, 1 => 14, ). [5](15)array ( 0 => 5, 1 => 15, ). [6](16)array ( 0 => 6, 1 => 16, ). [7](17)array ( 0 => 7, 1 => 17, ). [8](18)array ( 0 => 8, 1 => 18, ). [9](19)array ( 0 => 9, 1 => 19, ). [10](20)array ( 0 => 10, 1 => 20, ). (21)
Output for 5.4.0 - 5.4.45
Parse error: syntax error, unexpected '$i' (T_VARIABLE) in /in/pUHUR on line 6
Process exited with code 255.
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected T_VARIABLE in /in/pUHUR on line 6
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_VARIABLE in /in/pUHUR on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/pUHUR on line 6
Process exited with code 255.

preferences:
268.01 ms | 401 KiB | 344 Q