(PHP 5, PHP 7, PHP 8)
ReflectionMethod::__toString — 返回反射方法對象的字符串表達(dá)
返回反射方法對象的字符串表達(dá)
此函數(shù)沒有參數(shù)。
ReflectionMethod 實例的字符串表達(dá),也就是字符串
示例 #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 ] } }