|
ReflectionMethod::__toStringReturns the string representation of the Reflection method object. Beschreibung
public string ReflectionMethod::__toString
( void
)
Returns the string representation of the Reflection method object. Parameter-ListeDiese Funktion hat keine Parameter. RückgabewerteA string representation of this ReflectionMethod instance. Beispiele
Beispiel #1 ReflectionMethod::__toString example
<?phpDas oben gezeigte Beispiel erzeugt folgende Ausgabe:
Method [ <user> public method sayHelloTo ] {
@@ /var/www/examples/reflection.php 16 - 18
- Parameters [1] {
Parameter #0 [ <required> $name ]
}
}
|