ReflectionMethod::__toString
(PHP 5, PHP 7, PHP 8)
ReflectionMethod::__toString — ReflectionMethod オブジェクトの文字列表現を返す
パラメータ
この関数にはパラメータはありません。
戻り値
ReflectionMethod のインスタンスの文字列表現を返します。
例
例1 ReflectionMethod::__toString() の例
<?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 ] } }
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google