CakePHP图像链接

时间:2011-05-13 13:52:23

标签: html css oop cakephp

我无法找到如何在CakePHP中将其作为我的图像的链接:

  <img src="img/default.png" width="130" style="position: absolute; top: 0px; left: 0px; z-index: 3; opacity: 0; ">



$html->image('default.png').....????;

非常感谢!

2 个答案:

答案 0 :(得分:8)

您需要将以下内容添加到选项数组中:

'url' => array('controller' => '..' 'action' => '..')

$this->Html->image('default.png', array('url' => ..));

the documentation

中有更多信息

答案 1 :(得分:0)

echo $ this-&gt; Html-&gt; image(BASE_URL。“images / plus.jpg”,array(“alt”=&gt;'add fields',“id”=&gt;“add_more”,“height” “=→40,” 宽度“=→40));