get_declared_interfaces() 函数返回所有声明接口的数组。
用法
get_declared_interfaces(void)
参数
void - 不需要参数
返回
get_declared_interfaces() 函数返回所有声明接口的数组。
示例
以下是一个例子 -
<?php
print_r(get_declared_interfaces());
?>
输出
Array ( [0] => Traversable [1] => IteratorAggregate [2] => Iterator [3] => ArrayAccess [4] => Serializable [5] => Throwable [6] => DateTimeInterface [7] => Reflector [8] => RecursiveIterator [9] => OuterIterator [10] => Countable [11] => SeekableIterator [12] => SplObserver [13] => SplSubject [14] => SessionHandlerInterface [15] => SessionIdInterface [16] => SessionUpdateTimestampHandlerInterface [17] => JsonSerializable )
相关用法
- 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 getrandmax()用法及代码示例
注:本文由纯净天空筛选整理自Arjun Thakur大神的英文原创作品 get_declared_interfaces() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。