3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Testme { public static function foo(&$ref, &$ref2) { $ref = 1; $ref2 = 2; } } class Invoker { public static function invoke($func_name, &$args){ call_user_func_array(array('Testme', $func_name), $args); } } $test = 5; $test2 = 6; $args[] = &$test; $args[] = &$test2; Invoker::invoke('foo', $args); var_dump($test); var_dump($test2);
Output for git.master, git.master_jit, rfc.property-hooks
int(1) int(2)

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