魔术方法 __call
test("哎哟喂",123);//在调用test不存在的方法时,会自动调用__call方法/*输出: string(4) "test" array(2) { [0]=>string(9) "哎哟喂" [1]=>int(123) } 试一试*/
//文件名:Object.php namespace IMooc;class Object{ function __call($name, $arguments)//$name方法名=test,$arguments参数="哎哟喂",123 { var_dump($name,$arguments); return "试一试"; }}
静态魔术方法__callStatic
string(6) "hello1" [1]=>int(1234) } 试一试 */