(PHP 5, PHP 7, PHP 8)
ReflectionMethod::invoke — Invoke
執(zhí)行一個反射的方法。
object
如果執(zhí)行的方法是靜態(tài)類,那么這個參數(shù)傳送 null。
parameter
0,或者傳送給方法的參數(shù)列表??梢酝ㄟ^這個參數(shù),給方法傳送大量的參數(shù)。
返回方法的返回值
如果 object
并沒有包含一個可以使用的類實例,那么將產(chǎn)生
一個 ReflectionException。
如果方法調(diào)用失敗,也會產(chǎn)生一個 ReflectionException。
示例 #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
注意:
如果函數(shù)有參數(shù)需為引用,那么它們必須以引用方式傳入。