我正试图在cakephp中从webroot查看图片。 但我没有得到任何图像。请帮我;
此代码是否正确
$this->Html->image('WWW_ROOT . img/upload/aswq.png', array('width'=>'200px'));
答案 0 :(得分:4)
您可以使用这种方式显示来自webroot文件夹的图像。请注意img
帮助
html
文件夹已包含路径
echo $this->Html->image('upload/aswq.png', array('width' => '200px','alt'=>'aswq'));
将输出:
<img src="/img/upload/aswq.png" alt="aswq" />
请告诉我是否可以为您提供更多帮助。