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


PHP interface_exists()用法及代码示例


interface_exists() 函数检查接口是否已定义。如果 name_of_interface 给出的接口已经定义,则返回 TRUE,否则返回 FALSE。

用法

interface_exists(name_of_interface, autoload)

参数

  • name_of_interface− 接口名称。

  • autoload− 默认情况下是否调用 __autoload

返回

如果 name_of_interface 给出的接口已定义,则 interface_exists() 函数返回 TRUE。否则返回 FALSE。

示例

以下是一个例子 -

<?php
   if (interface_exists('DemoInterface')) {
      class MyClass implements DemoInterface {
         // Methods
      }
   }
?>

相关用法


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