当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ReflectionClass getInterfaceNames()用法及代码示例


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

用法:

array ReflectionClass::getInterfaceNames( void )

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


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

以下示例程序旨在说明PHP中的ReflectionClass::getInterfaceNames()函数:

示例1:

<?php 
  
// Defining some interfaces 
interface Colleges { } 
interface Departments { } 
interface Students { } 
interface Companies { } 
  
// Initialising a class of Interfaces 
class Interfaces implements Colleges, Departments, Students, Companies { } 
  
// Using ReflectionClass over the class Interfaces 
$A = new ReflectionClass("Interfaces"); 
  
// Calling the getInterfaceNames() function 
$B = $A->getInterfaceNames(); 
  
// Getting the name of the specified Interfaces 
print_r($B); 
?>

输出:

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

示例2:

<?php 
   
// Using ReflectionClass  
$ReflectionClass = new ReflectionClass('ReflectionClass'); 
   
// Calling getInterfaceNames() functions 
$A = $ReflectionClass->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



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionClass getInterfaceNames() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。