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
}
}
?>
相关用法
- PHP intdiv()用法及代码示例
- PHP intl_is_failure()用法及代码示例
- PHP intval()用法及代码示例
- PHP in_array()用法及代码示例
- PHP inet_ntop()用法及代码示例
- PHP inet_pton()用法及代码示例
- PHP include_once()、require_once()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP imagegif()用法及代码示例
- PHP imageresolution()用法及代码示例
- PHP imagebmp()用法及代码示例
- PHP is_link( )用法及代码示例
- PHP imap_getsubscribed()用法及代码示例
- PHP is_link()用法及代码示例
- PHP imagearc()用法及代码示例
- PHP imageftbbox()用法及代码示例
- PHP idate()用法及代码示例
- PHP imagecreatefromgif()用法及代码示例
- PHP imap_header()用法及代码示例
- PHP imap_last_error()用法及代码示例
注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 interface_exists() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。