我正在将 php 变量的值设置为一些 html。IE
$_img = '<a href="some url">hehehehehe</a>';
然后该变量在 br 标记之后显示在 html 中。但它不会执行其中的 html。而是像<a href="some url">hehehehehe</a>
. 那么,我的代码有什么问题吗!我该怎么做?
这是在 HTML 中显示的代码,
<?php if ($_item->getComment()): ?> <br/><?php echo $this->escapeHtml($_item->getComment(), array('b','br','strong','i','u')) ?> <?php endif; ?>