3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MyClass { public static function myStaticFunc() { var_dump(__METHOD__); } } function call(callable $func) { $func(); } $callFunction = 'call'; $callFunction('myclass::myStaticFunc'); $callFunction = 'myclass::myStaticFunc'; $callFunction(); $callFunction = 'myclass::unkownFunc'; $callFunction();
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.26, 8.3.0 - 8.3.14, 8.4.1
string(21) "MyClass::myStaticFunc" string(21) "MyClass::myStaticFunc" Fatal error: Uncaught Error: Call to undefined method MyClass::unkownFunc() in /in/W8hQA:20 Stack trace: #0 {main} thrown in /in/W8hQA on line 20
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Fatal error: Call to undefined function myclass::myStaticFunc() in /in/W8hQA on line 10
Process exited with code 255.

preferences:
63.1 ms | 407 KiB | 5 Q