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
<? $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 )