|
update : 2015.11.03
php.shukuma.com검색:
|
ReflectionMethod::__toString(PHP 5) ReflectionMethod::__toString — Returns the string representation of the Reflection method object. 설명
public string ReflectionMethod::__toString
( void
)
Returns the string representation of the Reflection method object. 인수이 함수는 인수가 없습니다. 반환값A string representation of this ReflectionMethod instance. 예제
Example #1 ReflectionMethod::__toString() example
<?php위 예제의 출력:
Method [ <user> public method sayHelloTo ] {
@@ /var/www/examples/reflection.php 16 - 18
- Parameters [1] {
Parameter #0 [ <required> $name ]
}
}
|