<?php class ClassWithBothMagicCallMethods { public function __call($name, $args) { return "__call: " . $name; } public static function __callStatic($name, $args) { return "__callStatic: " . $name; } public function doSomething() { return static::magicCall(); } } class ClassWithCallStaticOnly { public static function __callStatic($name, $args) { return "__callStatic: " . $name; } public function doSomething() { return static::magicCall(); } } echo (new ClassWithCallStaticOnly())->doSomething() . PHP_EOL; echo (new ClassWithBothMagicCallMethods())->doSomething() . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.
There are `0` results