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