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.

Приклади

Приклад #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