stream_get_filters

(PHP 5, PHP 7, PHP 8)

stream_get_filters检索已注册的过滤器列表

说明

stream_get_filters(): array

检索运行系统上注册的过滤器列表。

参数

此函数没有参数。

返回值

返回一个索引数组,包含所有可用流过滤器的名称。

示例

示例 #1 使用 stream_get_filters()

<?php
$streamlist
= stream_get_filters();
print_r($streamlist);
?>

上面的例子将输出类似以下内容

Array (
  [0] => string.rot13
  [1] => string.toupper
  [2] => string.tolower
  [3] => string.base64
  [4] => string.quoted-printable
)

参见

添加注释

用户贡献的注释 1 条注释

Jasper Bekkers
18 年前
要在 convert 过滤器中使用的过滤器是 base64-encode、base64-decode、quoted-printable-encode 和 quoted-printable-decode。注意:这些不在字符串过滤器中,如手册当前报告的那样!

示例用法是
<?php
$h
= fopen('gecodeerd.txt', 'r');
stream_filter_append($h, 'convert.base64-decode');
fpassthru($h);
fclose($h);
?>
或者
<?php
$filter
= 'convert.base64-decode';
$file = 'coded.txt';
$h = fopen('php://filter/read=' . $filter . '/resource=' . $file,'r');
fpassthru($h);
fclose($h);
?>
To Top