如何转换&字符到 HTML 字符?
应该是:
我如何在 PHP 中做到这一点?
<?php echo "Hello World!"; ?>
should be:
<?php echo "Hello World!"; ?>
How do I do that in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
应该是:
我如何在 PHP 中做到这一点?
<?php echo "Hello World!"; ?>
should be:
<?php echo "Hello World!"; ?>
How do I do that in PHP?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您需要其中之一:
主要区别在于
html_entity_decode()
将翻译字符串中的所有 HTML 实体(<
变为<
、á< /code> 变成
á
等),而html_specialchars_decode()
只翻译一些特殊的 HTML 实体:You need one of these:
The main difference is that
html_entity_decode()
will translate all the HTML entities in your string (<
becomes<
,á
becomesá
, etc.) whilehtml_specialchars_decode()
only translates some special HTML entities:htmlspecialchars_decode()
htmlspecialchars_decode()
您是否在寻找
html_entity_decode
?Are you looking for
html_entity_decode
?如果您实际上尝试手动执行此操作,而不是使用 html_entity_decode,尝试str_replace。
If you're actually trying to do this manually, instead of with html_entity_decode, try str_replace.