|
update : 2015.11.03
php.shukuma.com검색:
|
ReflectionMethod::getPrototype(PHP 5) ReflectionMethod::getPrototype — Gets the method prototype (if there is one). 인수이 함수는 인수가 없습니다. 반환값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위 예제의 출력:
object(ReflectionMethod)#2 (2) {
["name"]=>
string(10) "sayHelloTo"
["class"]=>
string(5) "Hello"
}
|