stream_get_wrappers

(PHP 5, PHP 7, PHP 8)

stream_get_wrappers获取注册的流列表

描述

stream_get_wrappers(): array

获取运行系统上可用的注册流列表。

参数

此函数没有参数。

返回值

返回一个索引数组,包含运行系统上所有可用流包装器的名称。

范例

范例 #1 stream_get_wrappers() 范例

<?php
print_r
(stream_get_wrappers());
?>

以上范例将输出类似于

Array
(
    [0] => php
    [1] => file
    [2] => http
    [3] => ftp
    [4] => compress.bzip2
    [5] => compress.zlib
)

范例 #2 检查流包装器是否存在

<?php
// 检查 bzip2 流包装器是否存在
if (in_array('compress.bzip2', stream_get_wrappers())) {
echo
'compress.bzip2:// 支持已启用.';
} else {
echo
'compress.bzip2:// 支持未启用.';
}
?>

参见

添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top