3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = array( array("one" => array("a"=>"0000", "b"=>"1111")), ); foreach($a as &$record) { $record["one"]["a"] = "2222"; } var_dump($a); var_dump(str_replace("2", "3", $a));
Output for git.master, git.master_jit, rfc.property-hooks
array(1) { [0]=> &array(1) { ["one"]=> array(2) { ["a"]=> string(4) "2222" ["b"]=> string(4) "1111" } } } Warning: Array to string conversion in /in/iOlfo on line 14 array(1) { [0]=> string(5) "Array" }

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:
59.4 ms | 401 KiB | 8 Q