©
本文檔使用 php中文網手册 發布
(PHP 5)
ReflectionMethod::__toString — 返回反射方法对象的字符串表达
返回反射方法对象的字符串表达
此函数没有参数。
ReflectionMethod 实例的字符串表达,也就是字符串
Example #1 ReflectionMethod::__toString() example
<?php
class HelloWorld {
public function sayHelloTo ( $name ) {
return 'Hello ' . $name ;
}
}
$reflectionMethod = new ReflectionMethod (new HelloWorld (), 'sayHelloTo' );
echo $reflectionMethod ;
?>
以上例程会输出:
Method [ <user> public method sayHelloTo ] { @@ /var/www/examples/reflection.php 16 - 18 - Parameters [1] { Parameter #0 [ <required> $name ] } }