PHP ReflectionClass::getInterfaceNames 反射函数
-
定义和用法
ReflectionClass::getInterfaceNames - 获取接口(interface)名称 -
版本支持
PHP4 PHP5 PHP7 不支持 支持 支持 -
语法
ReflectionClass::getInterfaceNames( void )
ReflectionClass::getInterfaceNames() 获取接口(interface)名称。 -
参数
参数 必需的 描述 无 -
返回值
一个数值数组,接口(interface)的名称是数组的值。 -
示例
尝试一下interface Foo { } interface Bar { } class Baz implements Foo, Bar { } $rc1 = new ReflectionClass("Baz"); print_r($rc1->getInterfaceNames());
-
相关页面
ReflectionClass::getInterfaces() - 获取接口