3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace GeneratorExample; class Pipeline { protected $generators = []; function __construct() { foreach (func_get_args() as $g) { $this->add($g); } } function add(callable $generator) { $this->generators[] = $generator; return $this; } function __invoke() { $inputs = func_get_args(); foreach ($this->generators as $g) { $generator = call_user_func_array($g, $inputs); $inputs = [$generator]; } return $generator; } } $uppercase = function(\Traversable $in) { foreach ($in as $word) { yield strtoupper($word); } } $reverse = function(\Traversable $in) { foreach ($in as $word) { yield strrev($word); } } $println = function(\Traversable $in) { foreach ($in as $line) { echo "$line\n"; } } $words = new \ArrayIterator(["foo", "bar", "baz"]); $p = new Pipeline($uppercase, $reverse, $println); $p($words);
Output for 5.4.0 - 5.4.12, 5.4.14
Parse error: syntax error, unexpected 'strtoupper' (T_STRING) in YkK5j on line 38
Process exited with code 255.
Output for 5.4.13
Parse error: syntax error, unexpected 'strtoupper' (T_STRING) in /in/WW8ih on line 38
Process exited with code 255.
Output for 5.3.0 - 5.3.22, 5.3.24
Parse error: syntax error, unexpected '[' in YkK5j on line 7
Process exited with code 255.
Output for 5.3.23
Parse error: syntax error, unexpected '[' in /in/WW8ih on line 7
Process exited with code 255.

preferences:
179.72 ms | 1395 KiB | 47 Q