stream_get_wrappers

(PHP 5, PHP 7)

stream_get_wrappers��ȡ��ע���������

˵��

stream_get_wrappers ( void ) : array

��ȡ�ڵ�ǰ����ϵͳ���Ѿ�ע�Ტ��ʹ�õ��������б�

����ֵ

����һ���������飬������������˵�ǰ����ϵͳ�п�ʹ�õ������͵����ơ�

����

Example #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
)

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

�μ�