摘要: <?php class A { public function call() { echo "hello world"; } } $ref = new ReflectionClass('A'); $inst = $ref->newInstanceArgs(); $inst->call(); 输出: 阅读全文
posted @ 2017-04-10 18:38 牛奶无花果 阅读(83) 评论(0) 推荐(0) 编辑