如何在 codeigniter 中 show/display 图片?

How to show/display images in codeigniter?

我正在尝试从文件夹中显示我的房子的图像,但它显示这样的错误

http://localhost/jageerx/assets/images/House/assets/images/House28278954_957081961107785_391331158313648576_n.jpg

404 (Not Found)

我的代码如下

<?php
$PropertyType = "";
$image = "";
if($data != null)
{
foreach($data as $key=>$value)
{
    $PropertyType = $value['PropertyType'];
    $image=$value['HouseImage1'];
}
}
?>

前端代码是这样的

 <img src="<?php echo base_url('assets/images/House/'. $image);?>" alt="tab1" class="img img-responsive"> 

下面提到了文件夹层次结构

这是模型函数

public function SIngleHouseADD($houseID)
{
    $this->db->select('*');
    $this->db->from('housedetail');
    $this->db->where('HouseID', $houseID);
    //$qry = $qry->result_array();
    $query=$this->db->get();
    $resultArray = $query->result_array();
    return $resultArray;
    //return $qry;
}

这个是控制器

public function SingleProperty()
{
    //$HouseID = $_GET['id'];
    $this->load->model('SingleAddModel');
    $plots = $this->SingleAddModel->SIngleHouseADD($_GET['id']);
    $data = array();
    $data["data"] = $plots;
    $this->load->view('SinglePropertyDetail_view', $data);
}

希望对您有所帮助:

因为你的 $image 变量已经包含 assets/images/House 所以不应该再在 base_url() 中使用

应该是这样的:

 foreach($data as $key=>$value) {
        $PropertyType = $value['PropertyType'];
        $image=$value['HouseImage1'];
    ?>
        <img src="<?php echo base_url().$image;?>" alt="tab1" class="img img-responsive"> 

    <?php }?>

我不知道这是否最适合您,但是当我在 codeigniter 中添加图像或 css 时,我通常将它们添加到与我的 index.php 相同的级别,所以它是这样的!

见截图。 screenshot

base_url() 中,您传递 assets/images/House/$image 中相同的路径,因此它是重复路径,我建议您先 echo 结果然后在 html 中使用它们。对于您的图片,您可以使用:

<img src="<?php echo base_url().$image;?>" alt="tab1" class="img img-responsive"> 

<img src="assets/images/House/<?php echo $image;?>" alt="tab1" class="img img-responsive">