Php/docs/function.stream-get-wrappers

来自菜鸟教程
跳转至:导航、​搜索

stream_get_wrappers

(PHP 5, PHP 7)

stream_get_wrappers获取已注册的流类型


说明

stream_get_wrappers ( ) : array

获取在当前运行系统中已经注册并可使用的流类型列表。


返回值

返回一个索引数组,该数组里包含了当前运行系统中可使用的流类型的名称。


范例

Example #1 stream_get_wrappers() 例子

<?phpprint_r(stream_get_wrappers());?>

以上例程的输出类似于:


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

Example #2 检查一个流类型是否存在

<?php// check for the existence of the bzip2 stream wrapperif (in_array('compress.bzip2', stream_get_wrappers())) {    echo 'compress.bzip2:// support enabled.';} else {    echo 'compress.bzip2:// support not enabled.';}?>

参见