ReflectionClass
PHP Manual

ReflectionClass::getInterfaceNames

(PHP 5)

ReflectionClass::getInterfaceNamesGets the interface names

Описание

public array ReflectionClass::getInterfaceNames ( void )

Get the interface names.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

A numerical array with interface names as the values.

Примеры

Пример #1 ReflectionClass::getInterfaceNames() example

<?php
interface Foo { }

interface 
Bar { }

class 
Baz implements FooBar { }

$rc1 = new ReflectionClass("Baz");

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

Результатом выполнения данного примера будет что-то подобное:

Array
(
    [0] => Foo
    [1] => Bar
)

Смотрите также


ReflectionClass
PHP Manual