📜  PHP | ReflectionClass getInterfaceNames()函数

📅  最后修改于: 2022-05-13 01:56:41.290000             🧑  作者: Mango

PHP | ReflectionClass getInterfaceNames()函数

ReflectionClass::getInterfaceNames()函数是PHP中的一个内置函数,用于将接口名称数组作为值返回。

句法:

array ReflectionClass::getInterfaceNames( void )

参数:此函数不接受任何参数。

返回值:此函数将接口名称数组作为值返回。

下面的程序说明了PHP中的 ReflectionClass::getInterfaceNames()函数:

方案一:

getInterfaceNames();
  
// Getting the name of the specified Interfaces
print_r($B);
?>

输出:

Array
(
    [0] => Colleges
    [1] => Departments
    [2] => Students
    [3] => Companies
)

方案二:

getInterfaceNames();
   
// Getting the name of the interfaces
var_dump($A);
?>

输出:

array(1) {
  [0]=>
  string(9) "Reflector"
}

参考: https://www. PHP.net/manual/en/reflectionclass.getinterfacenames。 PHP