3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Testme { public static function foo(&$ref) { $ref = 1; } } class Invoker { public static function invoke($func_name) { $args = func_get_args(); call_user_func_array(array('Testme', $func_name), array_slice($args,1)); } } $test = 2; Invoker::invoke('foo', &$test); var_dump($test);
Output for 5.4.0 - 5.4.19, 5.5.0 - 5.5.3
Fatal error: Call-time pass-by-reference has been removed in /in/cg0FB on line 17
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Warning: Parameter 1 to Testme::foo() expected to be a reference, value given in /in/cg0FB on line 12 int(2)

preferences:
184.63 ms | 1395 KiB | 61 Q