3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public $bar = ""; } $fooArr = [new Foo()]; function modifiesLocallyClonedFoo($fooArr) { $fooArr[0] = clone $fooArr[0]; $fooArr[0]->bar = "bar"; } modifiesLocallyClonedFoo($fooArr); var_dump($fooArr[0]); // Creating a reference to an array item changes the way the array behaves?!?!?!? $bar = &$fooArr[0]; modifiesLocallyClonedFoo($fooArr); var_dump($fooArr[0]);
Output for git.master, git.master_jit, rfc.property-hooks
object(Foo)#1 (1) { ["bar"]=> string(0) "" } object(Foo)#2 (1) { ["bar"]=> string(3) "bar" }

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