ReflectionMethod
PHP Manual

ReflectionMethod::getPrototype

(PHP 5)

ReflectionMethod::getPrototypeGets the method prototype (if there is one).

説明

public ReflectionMethod ReflectionMethod::getPrototype ( void )

Returns the methods prototype.

パラメータ

この関数にはパラメータはありません。

返り値

A ReflectionMethod instance of the method prototype.

エラー / 例外

A ReflectionException exception is thrown if the method does not have a prototype.

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

参考


ReflectionMethod
PHP Manual