(PHP 5)
ReflectionClass::getInterfaces — Gets the interfaces
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 Foo, Bar { }
$rc1 = new ReflectionClass("Baz");
print_r($rc1->getInterfaces());
?>
Результатом выполнения данного примера будет что-то подобное:
Array Array ( [Foo] => ReflectionClass Object ( [name] => Foo ) [Bar] => ReflectionClass Object ( [name] => Bar ) )