ReflectionParameter::getClass

(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:

ReflectionParameter::getDeclaringClass() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.