请问 , 魔术方法__invoke有什么用呢?
class Test{ function __invoke(){ echo 'hello word'; }}$obj = new Test();$obj();
// 对象被当作函数调用的时候,自动执行