stream_get_wrappers

(PHP 5, PHP 7, PHP 8)

stream_get_wrappers獲取已注冊的流類型

說明

stream_get_wrappers(): array

獲取在當前運行系統(tǒng)中已經(jīng)注冊并可使用的流類型列表。

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

返回一個索引數(shù)組,該數(shù)組里包含了當前運行系統(tǒng)中可使用的流類型的名稱。

范例

示例 #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
// check for the existence of the bzip2 stream wrapper
if (in_array('compress.bzip2'stream_get_wrappers())) {
    echo 
'compress.bzip2:// support enabled.';
} else {
    echo 
'compress.bzip2:// support not enabled.';
}
?>

參見