您好我正在使用cakephp版本-2.5.5。我想在锚标记中添加<b>Main Index</b>
我想 -
<a href="/2014/myshowcam/msc/user-chat-images/"><b>Main Index</b></a>
我的代码 -
<?php echo $this->Html->link($this->Html->tag('b', 'Main Index'),'/user-chat-images/');?>
我的输出 -
<a href="/2014/myshowcam/msc/user-chat-images/"><b>Main Index</b></a>
请建议我并告诉我如何在CakePHP格式的锚标记中添加<b>...</b>
?
答案 0 :(得分:1)
您必须将escape选项添加到false。阅读文件。
echo $this->Html->link($this->Html->tag('b', 'Main Index'),'/user-chat-images/', array('escape' => false));
答案 1 :(得分:0)
您可以随时为Cakephp中的所有链接,表单,文本和所有内容添加选项'escape'=>false
以显示html代码。