3v4l.org

run code in 300+ PHP versions simultaneously
<?php function foo(&$obj) { return $obj; } $o = "abc"; // No errors foo($o); call_user_func('foo', $o); call_user_func('foo', [$o]); $a[] = "abc"; $a[] = "abc"; $a[] = "abc"; // Warning: Parameter 1 to foo() expected to be a reference, value given in call_user_func('foo', array_slice($a, 0, 1));
Output for git.master, git.master_jit, rfc.property-hooks
Warning: foo(): Argument #1 ($obj) must be passed by reference, value given in /in/WMMQa on line 10 Warning: foo(): Argument #1 ($obj) must be passed by reference, value given in /in/WMMQa on line 11 Warning: foo(): Argument #1 ($obj) must be passed by reference, value given in /in/WMMQa on line 18

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