(PHP 5, PHP 7)
Get the type hinted class
public ReflectionClass ReflectionParameter::getClass ( void )
Gets the class type hinted for the parameter as a ReflectionClass object.
Returns:
A ReflectionClass object.
This function is currently not documented; only its argument list is available.
Examples:
Using the ReflectionParameter class
1 2 3 4 5 6 7 8 9 | <?php function foo(Exception $a ) { } $functionReflection = new ReflectionFunction( 'foo' ); $parameters = $functionReflection ->getParameters(); $aParameter = $parameters [0]; echo $aParameter ->getClass()->name; ?> |
The above example will output:
Exception
See also:
Please login to continue.