3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MethodTest { public function nonStaticFunction() { MethodTest::runTest(); } public function __call($name, $arguments) { // Note: value of $name is case sensitive. echo "Calling object method '$name' " . implode(', ', $arguments). "\n"; var_dump($this); } /** As of PHP 5.3.0 */ public static function __callStatic($name, $arguments) { // Note: value of $name is case sensitive. echo "Calling static method '$name' " . implode(', ', $arguments). "\n"; var_dump($this); } } $obj = new MethodTest; $obj->runTest('in object context'); MethodTest::runTest('in static context'); $obj->nonStaticFunction();
Output for 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Calling object method 'runTest' in object context object(MethodTest)#1 (0) { } Calling static method 'runTest' in static context Fatal error: Uncaught Error: Using $this when not in object context in /in/L01pF:24 Stack trace: #0 /in/L01pF(30): MethodTest::__callStatic('runTest', Array) #1 {main} thrown in /in/L01pF on line 24
Process exited with code 255.
Output for 5.3.0 - 5.3.2, 5.3.4 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33
Calling object method 'runTest' in object context object(MethodTest)#1 (0) { } Calling static method 'runTest' in static context Notice: Undefined variable: this in /in/L01pF on line 24 NULL Calling object method 'runTest' object(MethodTest)#1 (0) { }
Output for 5.3.3
Calling object method 'runTest' in object context object(MethodTest)#1 (0) { } Calling static method 'runTest' in static context Notice: Undefined variable: this in /in/L01pF on line 24 NULL Calling static method 'runTest' Notice: Undefined variable: this in /in/L01pF on line 24 NULL
Output for 5.2.10 - 5.2.17
Calling object method 'runTest' in object context object(MethodTest)#1 (0) { } Fatal error: Call to undefined method MethodTest::runTest() in /in/L01pF on line 30
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.9
Calling object method 'runTest' in object context object(MethodTest)#1 (0) { } Fatal error: Call to undefined method MethodTest::runtest() in /in/L01pF on line 30
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/L01pF on line 4
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/L01pF on line 4
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/L01pF on line 4
Process exited with code 255.

preferences:
274.64 ms | 401 KiB | 455 Q