(PHP 5, PHP 7)
ReflectionMethod::invoke — Invoke
执行一个反射的方法。
返回方法的返回值
Example #1 ReflectionMethod::invoke() example
<?php
class HelloWorld {
public function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
$reflectionMethod = new ReflectionMethod('HelloWorld', 'sayHelloTo');
echo $reflectionMethod->invoke(new HelloWorld(), 'Mike');
?>
以上例程会输出:
Hello Mike
Note:
如果函数有参数需为引用,那么它们必须以引用方式传入。