<?php class foo { function __call($name, $args){ echo "__call " . $name . PHP_EOL; } public static function __callStatic($name, $args) { echo "__callStatic " . $name . PHP_EOL; } public function make_call_self() { self::ted(); } public function make_call_static() { static::ted(); } function make_call_classname() { foo::bob(); } function make_call_classname_lambda() { $x = function(){ foo::nat(); }; $x(); } } $x = new foo(); $x->make_call_self(); $x->make_call_static(); $x->make_call_classname(); $x->make_call_classname_lambda(); foo::sam();
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`