3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MethodTest { 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->corritest('in object context'); MethodTest::corritest('in static context'); ?>

preferences:
35.75 ms | 402 KiB | 5 Q