3v4l.org

run code in 300+ PHP versions simultaneously
<?php function foo(&$str) { $str = 'xyz'; return $str; } $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)); var_dump($a);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: foo(): Argument #1 ($str) must be passed by reference, value given in /in/KNM3k on line 11 Warning: foo(): Argument #1 ($str) must be passed by reference, value given in /in/KNM3k on line 12 Warning: foo(): Argument #1 ($str) must be passed by reference, value given in /in/KNM3k on line 19 array(3) { [0]=> string(3) "abc" [1]=> string(3) "abc" [2]=> string(3) "abc" }

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