(PHP 5, PHP 7)
ReflectionParameter::getClass — Get the type hinted class
Gets the class type hinted for the parameter as a ReflectionClass object.
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Diese Funktion hat keine Parameter.
A ReflectionClass object.
Beispiel #1 Using the ReflectionParameter class
<?php
function foo(Exception $a) { }
$functionReflection = new ReflectionFunction('foo');
$parameters = $functionReflection->getParameters();
$aParameter = $parameters[0];
echo $aParameter->getClass()->name;
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
Exception