<?php class MyClass { public static function __callStatic($method, $args) { echo $method . "\n"; } } MyClass::privateMethod(); MyClass::protectedMethod(); MyClass::publicMethod();
You have javascript disabled. You will not be able to edit any code.