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

stream_get_filters

Description

The stream_get_filters of Stream for PHP retrieve list of registered filters.

Syntax

stream_get_filters ( void ) : array

Return

Returns an indexed array containing the name of all stream filters available.

Examples

1

<?

$return = stream_get_filters();

print_r($return);

?>
Array
(
    [0] => zlib.*
    [1] => bzip2.*
    [2] => convert.iconv.*
    [3] => string.rot13
    [4] => string.toupper
    [5] => string.tolower
    [6] => convert.*
    [7] => consumed
    [8] => dechunk
)
HomeMenu