无法在浏览器中显示图像

时间:2019-03-22 11:00:54

标签: php codeigniter

$images['result'][0]['image_path']-在这里,我有图像的路径。它在公用文件夹中。

<img width="150" height="150" alt="150x150" src="<?php BASEPATH."../public/" echo $images['result'][0]['image_path'];?>" />

有人可以帮我显示这张图片吗?

1 个答案:

答案 0 :(得分:0)

尝试一下

<img width="150" height="150" alt="150x150" src="<?php echo base_url('your/Folder/Structure/').$images['result'][0]['image_path'];?>" />

首先用引起问题的路径连接文件名。
base_url()还将帮助您获取/显示图像