3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public function getVars($obj) { var_dump(get_object_vars($obj)); } } $obj = (object) array( "\0*\0bar" => 1, "\0Foo\0baz" => 2, ); var_dump(get_object_vars($obj)); (new Foo())->getVars($obj); var_dump(Closure::bind(function ($obj) { var_dump($obj->bar, $obj->baz); }, $obj, 'Foo')->__invoke($obj)); 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::$bar in /in/U5Fqs on line 18 Warning: Undefined property: stdClass::$baz in /in/U5Fqs on line 18 NULL NULL NULL Fatal error: Uncaught Error: Cannot access property starting with "\0" in /in/U5Fqs:19 Stack trace: #0 {main} thrown in /in/U5Fqs on line 19
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } Notice: Undefined property: stdClass::$bar in /in/U5Fqs on line 18 Notice: Undefined property: stdClass::$baz in /in/U5Fqs on line 18 NULL NULL NULL Fatal error: Uncaught Error: Cannot access property started with '\0' in /in/U5Fqs:19 Stack trace: #0 {main} thrown in /in/U5Fqs on line 19
Process exited with code 255.
Output for 7.3.32 - 7.3.33
array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } array(2) { ["*bar"]=> int(1) ["Foobaz"]=> int(2) } NULL NULL NULL Fatal error: Uncaught Error: Cannot access property started with '\0' in /in/U5Fqs:19 Stack trace: #0 {main} thrown in /in/U5Fqs on line 19
Process exited with code 255.
Output for 5.4.18 - 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::$bar in /in/U5Fqs on line 18 Notice: Undefined property: stdClass::$baz in /in/U5Fqs on line 18 NULL NULL NULL Fatal error: Cannot access property started with '\0' in /in/U5Fqs on line 19
Process exited with code 255.
Output for 5.4.0 - 5.4.17
array(1) { ["bar"]=> int(1) } array(1) { ["bar"]=> int(1) } Notice: Undefined property: stdClass::$bar in /in/KcIIX on line 18 Notice: Undefined property: stdClass::$baz in /in/KcIIX on line 18 NULL NULL NULL Fatal error: Cannot access property started with '\0' in /in/KcIIX on line 19
Process exited with code 255.
Output for 5.3.28 - 5.3.29
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/U5Fqs on line 17
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /in/KcIIX on line 17
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_OBJECT_OPERATOR in /in/KcIIX on line 17
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/KcIIX on line 5
Process exited with code 255.
Output for 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/KcIIX 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/KcIIX on line 5
Process exited with code 255.
Output for 4.3.0
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/U5Fqs on line 5
Process exited with code 255.

preferences:
257.86 ms | 401 KiB | 357 Q