htmlentities 不适合我

发布于 2024-10-15 14:57:46 字数 549 浏览 2 评论 0原文

我正在尝试对某些文本中的 html 字符进行编码以在电子邮件中发送。 我使用了这个:htmlentities,但它对我不起作用。

我尝试了这个例子:

$str = "A 'quote' is <b>bold</b>";
// Outputs: A 'quote' is &lt;b&gt;bold&lt;/b&gt;
echo htmlentities($str);
// Outputs: A &#039;quote&#039; is &lt;b&gt;bold&lt;/b&gt;
echo htmlentities($str, ENT_QUOTES);

来自: http://www.php.net/manual/ fr/function.htmlentities.php

你能解释一下为什么它不起作用吗?

I am trying to encode html characters in some text to send in an email.
I used this: htmlentities, but it didn't work for me.

I tried this example :

$str = "A 'quote' is <b>bold</b>";
// Outputs: A 'quote' is <b>bold</b>
echo htmlentities($str);
// Outputs: A 'quote' is <b>bold</b>
echo htmlentities($str, ENT_QUOTES);

from: http://www.php.net/manual/fr/function.htmlentities.php

Can you please, explain why it didn't work?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月染过的梦 2024-10-22 14:57:46

htmlentities 用于转义 HTML 中有意义的字符,例如 <和>。如果您想在网页上显示这些字符而不破坏 HTML,那么它非常有用。它并不意味着在电子邮件中显示 HTML。

htmlentities is used to escape characters meaningful in HTML, like < and >. It is useful if you want to display those characters on a webpage without disrupting the HTML. Its is not meant to display HTML in an email.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文