这是什么编码(在邮件源代码中)?

时间:2015-09-01 18:21:17

标签: php encoding escaping

当我查看邮件来源时,我发现这种类型的编码,其中“= 09”显然是空间...如何在PHP中制作?

    <style type=3D"text/css">
=09=09body=2C#bodyTable=2C#bodyCell{
=09=09=09height:100% !important;
=09=09=09margin:0;
=09=09=09padding:0;
=09=09=09width:100% !important;
=09=09}
=09=09table{
=09=09=09border-collapse:collapse;
=09=09}
=09=09img=2Ca img{
=09=09=09border:0;
=09=09=09outline:none;

1 个答案:

答案 0 :(得分:1)

它是quoted-printable encoding,使用可打印的ASCII字符对8位数据进行编码。

PHP有quoted_printable_decode函数来解码它。