downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionMethod::invoke> <ReflectionMethod::getModifiers
[edit] Last updated: Sat, 07 Jan 2012

view this page in

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

참고



add a note add a note User Contributed Notes ReflectionMethod::getPrototype - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites