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


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


ReflectionClass::implementsInterface()函数是PHP中的内置函数,用于检查指定的接口是否存在。

用法:

bool ReflectionClass::implementsInterface( string $interface )

参数:该函数接受单个参数$interface,该参数保存正在检查的指定接口。


返回值:成功时此函数返回true,失败时返回false。

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

程序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 implementsInterface() function 
// over the Interface 'Colleges' 
$B = $A->implementsInterface('Colleges'); 
  
// Getting the value true or false 
var_dump($B); 
?>
输出:
bool(true)

程序2:

<?php 
   
// Defining a SuperClass interface Company  
interface Company { 
    public function GFG(); 
} 
  
// Defining a different interface Company1 
interface Company1 { 
    public function GeeksforGeeks(); 
} 
  
// Defining a subclass Departments 
class Departments implements Company { 
    public function GFG() {} 
} 
  
// Using ReflectionClass() over the  
// subclass Departments 
$reflect = new ReflectionClass('Departments'); 
  
// Calling implementsInterface() function 
$A = $reflect->implementsInterface('Company1'); 
  
// Getting the value either true or false 
var_dump($A); 
  
?>
输出:
bool(false)

参考: https://www.php.net/manual/en/reflectionclass.implementsinterface.php



相关用法


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