|
update : 2015.11.03
php.shukuma.com검색:
|
ReflectionClass::getInterfaces(PHP 5) ReflectionClass::getInterfaces — Gets the interfaces 설명
public array ReflectionClass::getInterfaces
( void
)
Gets the interfaces. 인수이 함수는 인수가 없습니다. 반환값An associative array of interfaces, with keys as interface names and the array values as ReflectionClass objects. 예제
Example #1 ReflectionClass::getInterfaces() example
<?php위 예제의 출력 예시:
Array
(
[Foo] => ReflectionClass Object
(
[name] => Foo
)
[Bar] => ReflectionClass Object
(
[name] => Bar
)
)
|