PHP 过滤转换器
convert.base64*
包括 convert.base64-encode
convert.base64-decode
使用这两个过滤器等同于分别用 base64_encode()
和 base64_decode()
函数处理所有的流数据。
设置参数
convert.base64-encode
支持以一个关联数组给出的参数。
- 如果给出了
line-length
,base64 输出将被用 line-length
个字符为长度而截成块。
- 如果给出了
line-break-chars
,每块将被用给出的字符隔开。
这些参数的效果和用 base64_encode()
再加上 chunk_split() 相同
示例代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
echo "\n ======================== \n";
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'convert.base64-encode');
fwrite($fp, "This is a test.\n");
fclose($fp);
/* 输出: VGhpcyBpcyBhIHRlc3QuCg== */
echo "\n ======================== \n";
$param = array('line-length' => 8, 'line-break-chars' => "\r\n");
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'convert.base64-encode', STREAM_FILTER_WRITE, $param);
fwrite($fp, "This is a test.\n");
fclose($fp);
/* 输出: VGhpcyBp
: cyBhIHRl
: c3QuCg== */
echo "\n ======================== \n";
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'convert.base64-decode');
fwrite($fp, "VGhpcyBpcyBhIHRlc3QuCg==");
fclose($fp);
/* 输出: This is a test. */
echo "\n ======================== \n";
?>
|
效果

convert.quoted.*
包含convert.quoted-printable-encode
和convert.quoted-printable-decode
使用此过滤器的 decode 版本等同于用 quoted_printable_decode()
函数处理所有的流数据。
使用此过滤器的 encode 版本没有相对应的函数。
设置参数
convert.quoted-printable-encode
支持以一个关联数组给出的参数,除了支持和convert.base64-encode
一样的附加参数外, convert.quoted-printable-encode
还支持布尔参数 binary
和 force-encode-first
。
示例代码:
1
2
3
4
5
6
|
<?php
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'convert.quoted-printable-encode');
fwrite($fp, "This is a test.\n");
/* 输出: =This is a test.=0A */
?>
|

convert.iconv.*
这个过滤器需要 php 支持iconv
,而 iconv 是默认编译的
使用convert.iconv.*
过滤器等同于用iconv()
函数处理所有的流数据。
convery.iconv.*
的使用有两种方法:
1
2
|
convert.iconv.<input-encoding>.<output-encoding>
convert.iconv.<input-encoding>/<output-encoding>
|
都可以
示例代码:
1
2
3
4
5
6
7
|
<?php
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'convert.iconv.utf-16le.utf-8');
fwrite($fp, "T\0h\0i\0s\0 \0i\0s\0 \0a\0 \0t\0e\0s\0t\0.\0\n\0");
fclose($fp);
/* 输出:This is a test. */
?>
|

编码一览
支持的字符编码参考
Ref
https://www.php.net/manual/en/filters.convert.php
https://www.freebuf.com/articles/web/266565.html
https://www.php.net/manual/en/mbstring.supported-encodings.php