我无法找到如何在CakePHP中将其作为我的图像的链接:
<img src="img/default.png" width="130" style="position: absolute; top: 0px; left: 0px; z-index: 3; opacity: 0; ">
$html->image('default.png').....????;
非常感谢!
答案 0 :(得分:8)
您需要将以下内容添加到选项数组中:
'url' => array('controller' => '..' 'action' => '..')
即
$this->Html->image('default.png', array('url' => ..));
中有更多信息
答案 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));