(PHP 5, PHP 7)
ReflectionMethod::getPrototype — 返回方法原型 (如果存在)
此函数没有参数。
方法原型的一个 ReflectionMethod 实例
如果方法没有原型,产生一个 ReflectionException
Example #1 ReflectionMethod::getPrototype() example
<?php
class Hello {
public function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
class HelloWorld extends Hello {
public function sayHelloTo($name) {
return 'Hello world: ' . $name;
}
}
$reflectionMethod = new ReflectionMethod('HelloWorld', 'sayHelloTo');
var_dump($reflectionMethod->getPrototype());
?>
以上例程会输出:
object(ReflectionMethod)#2 (2) { ["name"]=> string(10) "sayHelloTo" ["class"]=> string(5) "Hello" }