3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Everything you enter here will be executed by our servers. Try it! function iterator_compose($source, $steps) { foreach ($steps as $step) { $gen = $source; if (is_array($step) and !is_callable($step)) { $g = array_shift($step); array_unshift($step, $gen); if (class_exists($g)) { $class = new \ReflectionClass($className); $gen = $class->newInstanceArgs($step); } else if (is_callable($g)) { $gen = call_user_func_array($g, $step); } } else if (is_callable($step)) { $gen = $step($gen); } } return $gen; } function iterator_chunk(\Traversable $it, $chunkSize) { $it->rewind(); $chunk = []; $steps = range(1, $chunkSize); while (true) { foreach ($steps as $_) { if (!$it->valid()) { break 2; } $chunk[] = $it->current(); $it->next(); } yield $chunk; $chunk = []; } if ($chunk) { yield $chunk; } } $steps = [ function($it) { foreach ($it as $val) { yield chr($val); } }, ["iterator_chunk", 32], ]; $it = iterator_compose(new \ArrayIterator(range(0, 127)), $steps); foreach ($it as $i => $c) { echo "====== Chunk $i ======\n"; var_export($c); echo "\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
====== Chunk 0 ====== array ( 0 => 0, 1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 10 => 10, 11 => 11, 12 => 12, 13 => 13, 14 => 14, 15 => 15, 16 => 16, 17 => 17, 18 => 18, 19 => 19, 20 => 20, 21 => 21, 22 => 22, 23 => 23, 24 => 24, 25 => 25, 26 => 26, 27 => 27, 28 => 28, 29 => 29, 30 => 30, 31 => 31, ) ====== Chunk 1 ====== array ( 0 => 32, 1 => 33, 2 => 34, 3 => 35, 4 => 36, 5 => 37, 6 => 38, 7 => 39, 8 => 40, 9 => 41, 10 => 42, 11 => 43, 12 => 44, 13 => 45, 14 => 46, 15 => 47, 16 => 48, 17 => 49, 18 => 50, 19 => 51, 20 => 52, 21 => 53, 22 => 54, 23 => 55, 24 => 56, 25 => 57, 26 => 58, 27 => 59, 28 => 60, 29 => 61, 30 => 62, 31 => 63, ) ====== Chunk 2 ====== array ( 0 => 64, 1 => 65, 2 => 66, 3 => 67, 4 => 68, 5 => 69, 6 => 70, 7 => 71, 8 => 72, 9 => 73, 10 => 74, 11 => 75, 12 => 76, 13 => 77, 14 => 78, 15 => 79, 16 => 80, 17 => 81, 18 => 82, 19 => 83, 20 => 84, 21 => 85, 22 => 86, 23 => 87, 24 => 88, 25 => 89, 26 => 90, 27 => 91, 28 => 92, 29 => 93, 30 => 94, 31 => 95, ) ====== Chunk 3 ====== array ( 0 => 96, 1 => 97, 2 => 98, 3 => 99, 4 => 100, 5 => 101, 6 => 102, 7 => 103, 8 => 104, 9 => 105, 10 => 106, 11 => 107, 12 => 108, 13 => 109, 14 => 110, 15 => 111, 16 => 112, 17 => 113, 18 => 114, 19 => 115, 20 => 116, 21 => 117, 22 => 118, 23 => 119, 24 => 120, 25 => 121, 26 => 122, 27 => 123, 28 => 124, 29 => 125, 30 => 126, 31 => 127, )

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:
51.75 ms | 405 KiB | 8 Q