update : 2015.11.03
php.shukuma.com

검색:
 
 
Get the type hinted class

ReflectionParameter::getClass

(PHP 5)

ReflectionParameter::getClassGet the type hinted class

설명

public ReflectionClass ReflectionParameter::getClass ( void )

Gets the class type hinted for the parameter as a ReflectionClass object.

Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

인수

이 함수는 인수가 없습니다.

반환값

A ReflectionClass object.

예제

Example #1 Using the ReflectionParameter class

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

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

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

위 예제의 출력:

Exception

참고