PHP Velho Oeste 2024

ReflectionClass::getInterfaces

(PHP 5, PHP 7)

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
        )

)

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top