3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public function getBaz($obj) { var_dump($obj->baz); } public function getVars($obj) { var_dump(get_object_vars($obj)); } } $obj = (object) array( "\0*\0bar" => 1, "\0Foo\0baz" => 2, ); // trying `get_object_vars` from global scope var_dump(get_object_vars($obj)); // trying from Foo instance (new Foo())->getVars($obj); // trying from a Foo instance (new Foo())->getBaz($obj); // trying from a closure bound to `stdClass` var_dump(Closure::bind(function ($obj) { var_dump($obj->bar, $obj->baz); }, $obj, 'stdClass')->__invoke($obj)); // trying from a closure bound to `Foo` var_dump(Closure::bind(function ($obj) { var_dump($obj->bar, $obj->baz); }, $obj, 'Foo')->__invoke($obj)); // direct access (causes fatal) var_dump($obj->{"\0*\0bar"}); var_dump($obj->{"\0Foo*\0baz"});
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
array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } Warning: Undefined property: stdClass::$baz in /in/GvIYT on line 7 NULL Warning: Cannot bind closure to scope of internal class stdClass in /in/GvIYT on line 31 Fatal error: Uncaught Error: Call to a member function __invoke() on null in /in/GvIYT:31 Stack trace: #0 {main} thrown in /in/GvIYT on line 31
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } Notice: Undefined property: stdClass::$baz in /in/GvIYT on line 7 NULL Warning: Cannot bind closure to scope of internal class stdClass in /in/GvIYT on line 31 Fatal error: Uncaught Error: Call to a member function __invoke() on null in /in/GvIYT:31 Stack trace: #0 {main} thrown in /in/GvIYT on line 31
Process exited with code 255.
Output for 7.3.32 - 7.3.33, 7.4.26
array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } NULL Warning: Cannot bind closure to scope of internal class stdClass in /in/GvIYT on line 31 Fatal error: Uncaught Error: Call to a member function __invoke() on null in /in/GvIYT:31 Stack trace: #0 {main} thrown in /in/GvIYT on line 31
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28
array(1) { ["bar"]=> int(1) } array(1) { ["bar"]=> int(1) } Notice: Undefined property: stdClass::$baz in /in/GvIYT on line 7 NULL Notice: Undefined property: stdClass::$bar in /in/GvIYT on line 31 Notice: Undefined property: stdClass::$baz in /in/GvIYT on line 31 NULL NULL NULL Notice: Undefined property: stdClass::$bar in /in/GvIYT on line 34 Notice: Undefined property: stdClass::$baz in /in/GvIYT on line 34 NULL NULL NULL Fatal error: Cannot access property started with '\0' in /in/GvIYT on line 37
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/GvIYT on line 25
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_OBJECT_OPERATOR in /in/GvIYT 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/GvIYT on line 5
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/GvIYT on line 5
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/GvIYT on line 5
Process exited with code 255.

preferences:
172.48 ms | 401 KiB | 315 Q