如何使用 php 对 html 实体进行编码

发布于 2024-09-28 09:28:48 字数 532 浏览 0 评论 0原文

我正在使用 ck 编辑器撰写邮件,将邮件发送给我的用户,我正在使用 libmail 类。我的问题是如果我回显来自 ckeditor 的发布数据 例如: echo $message = $_POST['editor1'];
输出:“<数据>” 但如果我使用 libmail 发送消息,则像这样发送的邮件

<p>
    &quot;&nbsp; &lt; data &gt;&nbsp; &quot;</p>
<br />

我已经尝试过以下组合:

1 。 $message = strip_tags($message);
2. $message = htmlentities($message,ENT_NOQUOTES,'UTF-8');
3. $message = htmlspecialchars(stripslashes(strip_tags($message)));

我仍然无法解决这个问题。

I am using ck editor to compose my mail , to send mails to my user I am using the libmail class. my issue is if I echo the posted data from the ckeditor
eg: echo $message = $_POST['editor1'];
output : " < data > "
but if I send the message using the libmail the mail sended like this

<p>
    "  < data >  "</p>
<br />

I already tried this combination:

1 . $message = strip_tags($message);
2 . $message = htmlentities($message,ENT_NOQUOTES,'UTF-8');
3 . $message = htmlspecialchars(stripslashes(strip_tags($message)));

Still I could not able to solve this issue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文