La función ReflectionClass::getMethod() es una función incorporada en PHP que se utiliza para devolver un método ReflectionMethod para el método de clase especificado.
Sintaxis:
ReflectionMethod ReflectionClass::getMethod ( string $name )
Parámetros: Esta función acepta un parámetro $nombre que es el nombre del método.
Valor devuelto: esta función devuelve un método de reflexión para el método de clase especificado.
El siguiente programa ilustra la función ReflectionClass::getMethod() en PHP:
<?php // Using ReflectionClass over the inbuilt class // 'ReflectionClass' $class = new ReflectionClass('ReflectionClass'); // Calling the getMethod over the method named // as 'getMethod' $method = $class->getMethod('getMethod'); // Getting the ReflectionMethod for the specified // inbuilt class method. var_dump($method); ?>
Producción:
object(ReflectionMethod)#2 (2) { ["name"]=> string(9) "getMethod" ["class"]=> string(15) "ReflectionClass" }
Referencia: https://www.php.net/manual/en/reflectionclass.getmethod.php
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA