ReflectionClass::getInterfaces
インターフェイスを取得する
説明
public array ReflectionClass::getInterfaces()
戻り値
インターフェイスの連想配列を返します。インターフェイス名が連想配列のキー、対応する値が
ReflectionClass オブジェクトとなります。
例
例1 ReflectionClass::getInterfaces の例
<?php
interface Foo { }
interface Bar { }
class Baz implements Foo, Bar { }
$rc1 = new ReflectionClass("Baz");
print_r($rc1->getInterfaces());
?>
Array
(
[Foo] => ReflectionClass Object
(
[name] => Foo
)
[Bar] => ReflectionClass Object
(
[name] => Bar
)
)
参考
- ReflectionClass::getInterfaceNames