3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Derp { public function __call($name, $arguments) { // Note: value of $name is case sensitive. echo "Calling object method (from Derp class) '$name' " . implode(', ', $arguments). "\n"; } public static function __callStatic($name, $arguments) { // Note: value of $name is case sensitive. echo "Calling static method (from Derp class) '$name' " . implode(', ', $arguments). "\n"; } } class MethodTest { public function nonStaticFunction() { MethodTest::runTest(); Derp::runTest(); } public function __call($name, $arguments) { // Note: value of $name is case sensitive. echo "Calling object method '$name' " . implode(', ', $arguments). "\n"; } /** 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"; } } $obj = new MethodTest; //$obj->runTest('in object context'); //MethodTest::runTest('in static context'); $obj->nonStaticFunction();

preferences:
40.37 ms | 402 KiB | 5 Q