这是什么编码(在邮件源代码中)?
What encoding is this (in mail source code)?
当我查看邮件来源时,我发现这种类型的编码显然是“=09”space...如何在 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;
是quoted-printable encoding,使用可打印的ASCII字符编码8位数据。
PHP 有 quoted_printable_decode 功能来解码它。
当我查看邮件来源时,我发现这种类型的编码显然是“=09”space...如何在 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;
是quoted-printable encoding,使用可打印的ASCII字符编码8位数据。
PHP 有 quoted_printable_decode 功能来解码它。