(PHP 5 >= 5.1.2, PHP 7, PHP 8)
ReflectionMethod::invokeArgs — 带参数执行
object
调用方法的对象,如果是静态对象,设置为 null
args
使用 array 传送的方法参数。
返回方法返回值。
示例 #1 ReflectionMethod::invokeArgs() 示例
<?php
class HelloWorld {
public function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
$reflectionMethod = new ReflectionMethod('HelloWorld', 'sayHelloTo');
echo $reflectionMethod->invokeArgs(new HelloWorld(), array('Mike'));
?>
以上例程会输出:
Hello Mike
注意:
如果函数有参数需为引用,那么它们必须以引用方式传入。