ReflectionMethod::getPrototype

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

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

說(shuō)明

public ReflectionMethod::getPrototype(): ReflectionMethod

返回方法原型

參數(shù)

此函數(shù)沒(méi)有參數(shù)。

返回值

方法原型的一個(gè) ReflectionMethod 實(shí)例

錯(cuò)誤/異常

如果方法沒(méi)有原型,產(chǎn)生一個(gè) ReflectionException

范例

示例 #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());
?>

以上例程會(huì)輸出:

object(ReflectionMethod)#2 (2) {
  ["name"]=>
  string(10) "sayHelloTo"
  ["class"]=>
  string(5) "Hello"
}

參見(jiàn)