我试图弄清楚如何使用cakephp让我的图像源显示在我的图像中。每当我尝试使用$this->Html
来放置源时,它只显示一个空白文本。
这就是我调用图像的方式:
<img class="banner-image" src="<?php $this->Html->image('theme/banner.png', array('alt' => 'CakePHP', 'border' => '0')); ?>" />
这就是它在
中的显示方式<img class="banner-image" src="" />
似乎是什么问题?
答案 0 :(得分:4)
echo $this->Html->image("theme/banner.png",
array("alt" => "CakePHP",'url' => array('controller' => 'Student', 'action' => 'view', 6)
));
答案 1 :(得分:1)
尝试
echo $this->Html->image('theme/banner.png', array('class' => 'banner-image'));