(PHP 5, PHP 7, PHP 8)
ReflectionMethod::__toString — Retourne une représentation textuelle de la méthode
Récupère une représentation textuelle de la méthode.
Cette fonction ne contient aucun paramètre.
Une représentation textuelle de cet objet ReflectionMethod.
Exemple #1 ReflectionMethod::__toString() example
<?php
class HelloWorld {
public function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
$reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo');
echo $reflectionMethod;
?>
L'exemple ci-dessus va afficher :
Method [ <user> public method sayHelloTo ] { @@ /var/www/examples/reflection.php 16 - 18 - Parameters [1] { Parameter #0 [ <required> $name ] } }