基本上,我试图输出这个。
<a href="/users/info"><span class="glyphicon glyphicon-list-alt"></span>My Bookings <b></b></a>
但是,Html->link( ... ) 不允许这种情况轻易发生。
答案 0 :(得分:1)
如果<b>
标签中没有任何内容,则
<?php echo $this->Html->link('My booking'.'<span class="glyphicon glyphicon-list-alt">'.'</span>'.'<b>'.'</b>',
array
(
'controller'=>'user',
'action'=>'info',
),
array
(
'escape'=>false
)
);?>