3v4l.org

run code in 300+ PHP versions simultaneously
<?php $linearray = [['a','z',1], ['a','z',0], ['a','b',1], ['a','c',1]]; $a_iter = new ArrayIterator($linearray); $b_iter = new LimitIterator(new InfiniteIterator(new ArrayIterator(array("1","2","3","4","5","6"))), 0, count($linearray)); $m_iter = new MultipleIterator(MultipleIterator::MIT_KEYS_ASSOC); $m_iter->attachIterator($a_iter, 'a'); $m_iter->attachIterator($b_iter, 'b'); foreach ($m_iter as $item) { print_r(array_merge($item['a'], array($item['b']))); }
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => a [1] => z [2] => 1 [3] => 1 ) Array ( [0] => a [1] => z [2] => 0 [3] => 2 ) Array ( [0] => a [1] => b [2] => 1 [3] => 3 ) Array ( [0] => a [1] => c [2] => 1 [3] => 4 )

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:
44.26 ms | 402 KiB | 8 Q