3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { public function foo(&$arg1) { var_dump('arg1: ', $arg1); } } class B extends A { public function bar() { $x = new stdClass(); $x->baz = 'just a value'; $this->callPrivate($x); } private function callPrivate($x) { $method = new \ReflectionMethod( 'A', 'foo' ); //working 5.4 (* see above) but not in 5.5 $arguments = func_get_args(); return $method->invokeArgs($this, $arguments); } } $obj = new B; $obj->bar();
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Warning: A::foo(): Argument #1 ($arg1) must be passed by reference, value given in /in/0T3de on line 25 string(6) "arg1: " object(stdClass)#2 (1) { ["baz"]=> string(12) "just a value" }
Output for 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: Parameter 1 to A::foo() expected to be a reference, value given in /in/0T3de on line 25 string(6) "arg1: " object(stdClass)#2 (1) { ["baz"]=> string(12) "just a value" }
Output for 7.0.0 - 7.0.33
Warning: Parameter 1 to A::foo() expected to be a reference, value given in /in/0T3de on line 25 Fatal error: Uncaught ReflectionException: Invocation of method A::foo() failed in /in/0T3de:25 Stack trace: #0 /in/0T3de(25): ReflectionMethod->invokeArgs(Object(B), Array) #1 /in/0T3de(12): B->callPrivate(Object(stdClass)) #2 /in/0T3de(29): B->bar() #3 {main} thrown in /in/0T3de on line 25
Process exited with code 255.
Output for 5.5.6 - 5.5.7, 5.6.0 - 5.6.38
Warning: Parameter 1 to A::foo() expected to be a reference, value given in /in/0T3de on line 25 Fatal error: Uncaught exception 'ReflectionException' with message 'Invocation of method A::foo() failed' in /in/0T3de:25 Stack trace: #0 /in/0T3de(25): ReflectionMethod->invokeArgs(Object(B), Array) #1 /in/0T3de(12): B->callPrivate(Object(stdClass)) #2 /in/0T3de(29): B->bar() #3 {main} thrown in /in/0T3de on line 25
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.5, 5.5.8 - 5.5.38
string(6) "arg1: " object(stdClass)#2 (1) { ["baz"]=> string(12) "just a value" }
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/0T3de on line 17 string(6) "arg1: " object(stdClass)#2 (1) { ["baz"]=> string(12) "just a value" }
Output for 5.0.0 - 5.0.5
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/0T3de on line 17 Fatal error: Call to undefined method ReflectionMethod::invokeArgs() in /in/0T3de on line 25
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/0T3de on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/0T3de on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/0T3de on line 3
Process exited with code 255.

preferences:
306.99 ms | 401 KiB | 425 Q