CakePHP HTML助手

CakePHP HTML助手,cakephp,cakephp-2.0,cakephp-2.1,Cakephp,Cakephp 2.0,Cakephp 2.1,我试图使用CakePHP2.1中的HTML助手复制以下代码。不确定如何将跨度标记包含到标记中 <div class="backTo"> <a href="#" title=""> <img src="images/icons/topnav/mainWebsite.png" alt="" /> <span>Main website</span> </a> </div>

我试图使用CakePHP2.1中的HTML助手复制以下代码。不确定如何将跨度标记包含到标记中

<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')); ?>
echo$this->Html->link(
$this->Html->image(“…”,array(…).“主网站”,
数组('controller'=>…),
数组('escape'=>false)
);
echo $this->Html->link(
    $this->Html->image('...', array(...)) . '<span>Main website</span>',
    array('controller' => ...),
    array('escape' => false)
);