CakePHP HTML Helper

时间:2012-04-09 05:36:30

标签: cakephp cakephp-2.0 cakephp-2.1

我正在尝试使用CakePHP 2.1中的HTML Helper复制以下代码。不确定如何将Span标记包含在标记中。

<div class="backTo">
    <a href="#" title="">
      <img src="images/icons/topnav/mainWebsite.png" alt="" />
      <span>Main website</span>
    </a>
</div>

我尝试了什么

<?php echo $this->Html->image("icons/topnav/mainWebsite.png", array("alt" => "Back", 'url' => array('controller' => 'pages', 'action' => 'display', 'home')); ?>

1 个答案:

答案 0 :(得分:2)

echo $this->Html->link(
    $this->Html->image('...', array(...)) . '<span>Main website</span>',
    array('controller' => ...),
    array('escape' => false)
);