If the method doesn't exist within the class that the ReflectionClass is reflecting an Exception is thrown.
ReflectionClass::getMethod
(PHP 5)
ReflectionClass::getMethod — دریافت ReflectionMethod
Description
public object ReflectionClass::getMethod
( string $name
)
دریافت ReflectionMethod درباره متد.
Warning
This function is currently not documented; only its argument list is available.
Parameters
- name
-
نام متد برای بازتاب.
Return Values
See Also
- ReflectionClass::getMethod()
Christopher Turner ¶
2 years ago
Jarrod Nettles ¶
2 years ago
If you ever need to get the type hint of a parameter in a method use this.
<?php
//Target our class
$reflector = new ReflectionClass('MyClass');
//Get the parameters of a method
$parameters = $reflector->getMethod('FireCannon')->getParameters();
//Loop through each parameter and get the type
foreach($parameters as $param)
{
//Before you call getClass() that class must be defined!
echo $param->getClass()->name;
}
?>
