ReflectionParameter::getClass

(PHP 5, PHP 7)

ReflectionParameter::getClassタイプヒントつきのクラスを取得する

説明

public ReflectionParameter::getClass ( void ) : ReflectionClass

パラメータとしてタイプヒントされたクラスを、ReflectionClass オブジェクトとして取得します。

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

この関数にはパラメータはありません。

返り値

ReflectionClass オブジェクトを返します。

例1 ReflectionParameter クラスの利用法

<?php
function foo(Exception $a) { }

$functionReflection = new ReflectionFunction('foo');
$parameters $functionReflection->getParameters();
$aParameter $parameters[0];

echo 
$aParameter->getClass()->name;
?>

上の例の出力は以下となります。

Exception

参考