用法
interface_exists ( $interface_name [, $autoload] );
定义和用法
此函数检查是否已定义给定接口。
参数
Sr.No | 参数及说明 |
---|---|
1 |
interface_name(Required) 接口名称 |
2 |
autoload(Optional) 默认情况下是否调用 __autoload 。 |
返回值
如果 interface_name 给出的接口已定义,则返回 TRUE,否则返回 FALSE。
示例
下面是这个函数的用法~
<?php
if (interface_exists('SomeInterface')) {
class MyClass implements SomeInterface {
// Methods
}
}
?>
相关用法
- PHP interface_exists()用法及代码示例
- 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 - Function interface_exists()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。