Featured image of post PHP 转换过滤器

PHP 转换过滤器

PHP 转换过滤器整理

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";
?>

效果

image-20241217151922746

convert.quoted.*

包含convert.quoted-printable-encodeconvert.quoted-printable-decode

使用此过滤器的 decode 版本等同于用 quoted_printable_decode()函数处理所有的流数据。

使用此过滤器的 encode 版本没有相对应的函数。

设置参数

convert.quoted-printable-encode支持以一个关联数组给出的参数,除了支持和convert.base64-encode一样的附加参数外, convert.quoted-printable-encode还支持布尔参数 binaryforce-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  */
?>

image-20241217152706273

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. */
?>

image-20241217153108078

编码一览

支持的字符编码参考

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

Dan❤Anan
Built with Hugo
主题 StackJimmy 设计