stream_get_wrappers

(PHP 5, PHP 7, PHP 8)

stream_get_wrappers獲取已注冊(cè)的流類型

說(shuō)明

stream_get_wrappers(): array

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

參數(shù)

此函數(shù)沒(méi)有參數(shù)。

返回值

返回一個(gè)索引數(shù)組,該數(shù)組里包含了當(dāng)前運(yùn)行系統(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 檢查一個(gè)流類型是否存在

<?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.';
}
?>

參見(jiàn)