(PHP 5, PHP 7)
ReflectionClass::getMethod — Récupère un objet ReflectionMethod pour une méthode d'une classe
Récupère un objet ReflectionMethod pour une méthode d'une classe.
name
Le nom de la méthode à refléter.
Un objet ReflectionMethod.
Une exception ReflectionException si la méthode n'existe pas.
Exemple #1 Exemple avec ReflectionClass::getMethod()
<?php
$class = new ReflectionClass('ReflectionClass');
$method = $class->getMethod('getMethod');
var_dump($method);
?>
L'exemple ci-dessus va afficher :
object(ReflectionMethod)#2 (2) { ["name"]=> string(9) "getMethod" ["class"]=> string(15) "ReflectionClass" }