ReflectionMethod::__toString
(PHP 5)
ReflectionMethod::__toString — Returns the string representation of the Reflection method object.
Descrierea
public string ReflectionMethod::__toString
( void
)
Returns the string representation of the Reflection method object.
Parametri
Această funcție nu are parametri.
Valorile întoarse
A string representation of this ReflectionMethod instance.
Exemple
Example #1 ReflectionMethod::__toString() example
<?php
class HelloWorld {
public function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
$reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo');
echo $reflectionMethod;
?>
Exemplul de mai sus va afișa:
Method [ <user> public method sayHelloTo ] {
@@ /var/www/examples/reflection.php 16 - 18
- Parameters [1] {
Parameter #0 [ <required> $name ]
}
}
There are no user contributed notes for this page.
