(PHP 5, PHP 7, PHP 8)
ReflectionClass::getInterfaces — 获取接口
此函数没有参数。
一个关联的 array,包含接口,键为接口名称,数组值为 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 ) )