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