让这个 php 查询也显示一个 html 链接
可以修改此代码片段以显示 html 编码吗?
<?php $_option = $this->getOption() ?>
<?php echo $this->htmlEscape($_option->getTitle()) ?>
它显示了一个标题,但在该标题中我有一个 href:
<a href="http://link" target="otherwindow">link</a>
而不是显示为链接,它只向我显示代码。 我希望它是一个可点击的链接。
可能的?
can this code snippet be modified to reveal html coding?
<?php $_option = $this->getOption() ?>
<?php echo $this->htmlEscape($_option->getTitle()) ?>
it is showing a title but in that title i have an href:
<a href="http://link" target="otherwindow">link</a>
instead of it appearing as a link it just shows me the code.
i'd like it to be a clickable link.
possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,只需删除 $this->htmlEscape() 并保留 $_option->getTitle()
转义函数只是提供无法使用(或注入)html 命令或 javascript 的功能。
Yes, just remove the $this->htmlEscape() and leave the $_option->getTitle()
The escape function is to provide just the functionality of not being able to use (or inject) html commands or javascript.