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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。