我有一张要在视图中显示的图像,当我将它放在 public/assets/img 文件夹中并在 view(.phtml) 随附的代码中写入时,它可以工作:
<img src="/assets/img/logo.jpg" width="150" height="150" class="img-circle pull-left" alt="<?= $fournisseur->intitule ?>" />
我想将图像放在 data/img 文件夹中并在我的视图中显示,如何在我尝试使用 thise 代码的视图中显示它,删除路径中的数据但没有图像视图:
<img src="/data/img/logo.jpg" width="150" height="150" class="img-circle pull-left" alt="<?= $fournisseur->intitule ?>" />
我想为图像创建一个控制器:
public function imageAction()
{
/** get id by url **/
$imageContent = file_get_contents('./data/img/logo.jpg');
/** set file to reponse **/
$response->setContent($imageContent);
/** creat header **/
$response
->getHeaders();
return $response;
}
鉴于:
<img src=<?=$this->url('fourni',array('action' => 'image');?>class="img-rounded" alt="image" width="50" height="50">