用法
get_declared_interfaces ( void );
定義和用法
此函數獲取聲明的接口。
參數
Sr.No | 參數及說明 |
---|---|
1 |
void void 表示不需要參數。 |
返回值
它返回當前腳本中聲明的接口名稱的數組。
示例
下麵是這個函數的用法~
<?php
print_r(get_declared_interfaces());
?>
它將產生以下結果 -
Array ( [0] => Traversable [1] => IteratorAggregate [2] => Iterator [3] => ArrayAccess [4] => reflector [5] => RecursiveIterator [6] => SeekableIterator )
相關用法
- PHP get_declared_interfaces()用法及代碼示例
- PHP get_declared_classes()用法及代碼示例
- PHP get_defined_vars()用法及代碼示例
- PHP get_resource_type()用法及代碼示例
- PHP get_class()用法及代碼示例
- PHP get_resource_id()用法及代碼示例
- PHP get_class_methods()用法及代碼示例
- PHP get_headers()用法及代碼示例
- PHP get_class_vars()用法及代碼示例
- PHP get_object_vars()用法及代碼示例
- PHP get_browser()用法及代碼示例
- PHP get_html_translation_table()用法及代碼示例
- PHP get_parent_class()用法及代碼示例
- PHP get_called_class()用法及代碼示例
- PHP get_meta_tags()用法及代碼示例
- PHP getimagesizefromstring()用法及代碼示例
- PHP getservbyport()用法及代碼示例
- PHP gethostnamel()用法及代碼示例
- PHP getcwd()用法及代碼示例
- PHP getcwd( )用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Function get_declared_interfaces()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。