【发布时间】:2021-03-20 09:59:38
【问题描述】:
问题是关于 PHP 函数quoted_printable_decode 并返回一些...。
示例(quoted_printable_decode 之前的原始)
<table width=3D"750" border=3D"0" align=3D"center" cellpa=
dding=3D"0" cellspacing=3D"0">
=09=09=09=09=09=09<tr>
=09=09=09=09=09=09<td class=3D"contenu">
=09=09=09=09=09=09=09=09<div class=3D"txt-contenu">
=09=09=09=09=09=09=09=09<p>Chère cliente, Cher client,</p>
=09=09=09=09=09=09=09=09<p>Selon nos dossiers, une personne de votre entrep=
rise a contacté notre Service =E0 la client=E8le récemment, e=
t nous aimerions savoir si elle est satisfaite du service qu’elle a re&cced=
il;u.
=09=09=09=09=09=09=09=09</p>
=09=09=09=09=09=09=09=09<p>
=09=09=09=09=09=09=09=09=09Puisque votre opinion nous tient à c&oeli=
g;ur, nous vous invitons à participer à un sondage rapide com=
prenant sept questions. Trois minutes suffisent pour y répondre!
=09=09=09=09=09=09=09=09</p>
quoted_printable_decode 之后
echo quoted_printable_decode($raw);
returns this: <table width="750" border="0" align="center" cellpadding="0" cellspacing="0">
<tbody><tr>
<td class="contenu">
<div class="txt-contenu">
<p>Chère cliente, Cher client,</p>
<p>Selon nos dossiers,
une personne de votre entreprise a contacté notre
Service � la client�le récemment, et nous aimerions savoir si elle est satisfaite du service qu’elle a reçu.
</p>
<p>
Puisque votre opinion nous tient à cœur, nous vous invitons à participer à un sondage rapide comprenant sept questions. Trois minutes suffisent pour y répondre!
•••• 好像是这部分
服务=E0 la client=E8le
返回的服务 - la client.le
现在我该如何修复返回的零件?
【问题讨论】:
标签: php decode quoted-printable