PHP Conference Japan 2024

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
19 年前
要在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