PHP 8.5.8 Released!

ReflectionMethod::getPrototype

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

ReflectionMethod::getPrototype返回方法原型 (如果存在)

说明

public function ReflectionMethod::getPrototype(): ReflectionMethod

返回方法原型。

参数

此函数没有参数。

返回值

方法原型的 ReflectionMethod 实例。

错误/异常

如果方法没有原型,抛出 ReflectionException

示例

示例 #1 ReflectionMethod::getPrototype() 示例

<?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"
}

参见

发现了问题?

了解如何改进此页面提交拉取请求报告一个错误
+添加备注

用户贡献的备注

此页面尚无用户贡献的备注。

AltStyle によって変換されたページ (->オリジナル) /