update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the interfaces

ReflectionClass::getInterfaces

(PHP 5)

ReflectionClass::getInterfacesGets 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
interface Foo { }

interface 
Bar { }

class 
Baz implements FooBar { }

$rc1 = new ReflectionClass("Baz");

print_r($rc1->getInterfaces());
?>

위 예제의 출력 예시:

Array
(
    [Foo] => ReflectionClass Object
        (
            [name] => Foo
        )

    [Bar] => ReflectionClass Object
        (
            [name] => Bar
        )

)

참고