3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = array('foo','bar',1); $x1 = new ArrayObject($a); $x1['foo1'] = 'foo1'; $x2 = new ArrayObject; $x2->exchangeArray(iterator_to_array($x1)); $x2['foo2'] = 'foo2'; var_dump($a, $x1, $x2);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> string(3) "foo" [1]=> string(3) "bar" [2]=> int(1) } object(ArrayObject)#1 (1) { ["storage":"ArrayObject":private]=> array(4) { [0]=> string(3) "foo" [1]=> string(3) "bar" [2]=> int(1) ["foo1"]=> string(4) "foo1" } } object(ArrayObject)#2 (1) { ["storage":"ArrayObject":private]=> array(5) { [0]=> string(3) "foo" [1]=> string(3) "bar" [2]=> int(1) ["foo1"]=> string(4) "foo1" ["foo2"]=> string(4) "foo2" } }

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