ReflectionClass
PHP Manual

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
Array
(
    [Foo] => ReflectionClass Object
        (
            [name] => Foo
        )

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

)

Вж. също


ReflectionClass
PHP Manual