(PHP 5, PHP 7)
ReflectionParameter::getClass — 获得类型提示类。
此函数没有参数。
一个 ReflectionClass 对象。
Example #1 使用 ReflectionParameter 类
<?php
function foo(Exception $a) { }
$functionReflection = new ReflectionFunction('foo');
$parameters = $functionReflection->getParameters();
$aParameter = $parameters[0];
echo $aParameter->getClass()->name;
?>
以上例程会输出:
Exception