HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

stream_get_wrappers

Description

The stream_get_wrappers of Stream for PHP retrieve list of registered streams.

Syntax

stream_get_wrappers ( void ) : array

Return

Returns an indexed array containing the name of all stream wrappers available on the running system.

Examples

1

<?

$return = stream_get_wrappers();

print_r($return);
Array
(
    [0] => https
    [1] => ftps
    [2] => compress.zlib
    [3] => compress.bzip2
    [4] => php
    [5] => file
    [6] => glob
    [7] => data
    [8] => http
    [9] => ftp
    [10] => phar
    [11] => zip
)