update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the method prototype (if there is one).

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.

예제

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

참고