htmlspecialchars & 符号

发布于 2024-12-22 10:41:01 字数 230 浏览 1 评论 0原文

<h3><?php echo $this->__('Details & Documents') ?></h3>

上面的打印结果为: Details &amp; Documents

正确的语法是什么,以便它打印为: Details &文件

谢谢

<h3><?php echo $this->__('Details & Documents') ?></h3>

The above prints out as: Details & Documents

What is the proper syntax so that it prints as: Details & Documents?

Thanks

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

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

发布评论

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

评论(1

我的奇迹 2024-12-29 10:41:01

html_entity_decode 应该做你想做的事:

<h3><?php echo html_entity_decode($this->__('Details & Documents')) ?></h3>

虽然可能有 Magento - 为此的特定设置。

html_entity_decode should do what you want:

<h3><?php echo html_entity_decode($this->__('Details & Documents')) ?></h3>

Although there may be a Magento-specific setting for this.

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