我是cakephp的新手,我必须创建一个包含2个标签的链接,例如关注html
<li><a href="#"><i class="fa fa-th-list"></i> <span>Shop</span></a></li>
在蛋糕php中,我做了类似的事情:
<li><?php echo $this->Html->link(
// $this->Html->tag('i', array('class' => array('fa', 'fa-th-list'))),
$this->Html->tag('span', 'Video / Imagini', null),
array(
'controller' => 'users',
'action' => 'video',
),
array('escape' => FALSE)) ?></li>
如何添加标签? 我搜索互联网和蛋糕书,但没有关于第二个标签的详细信息。
感谢您的时间。
答案 0 :(得分:3)
您的代码几乎是正确的。我只做了一些小改动:
<li><?php
echo $this->Html->link(
$this->Html->tag('i', '', array('class' => array('fa', 'fa-th-list'))) .
$this->Html->tag('span', 'Video / Imagini'),
array(
'controller' => 'users',
'action' => 'video',
),
array('escape' => false)
);
?></li>