0

こんにちは:)各ユーザーが自分のバージョンのギャラリーを自分のプロファイルにアップロードできるようにしようとしていますが、そうすると、同じギャラリーが各プロファイルに表示されます。これを実行しようとすると、同じギャラリーが表示されるだけでなく、次のエラーも表示されます: 重大度: 警告

メッセージ: foreach() に無効な引数が指定されました

また、データベース内の各ユーザーのギャラリーに各ギャラリー画像をロードすることを目指しており、画像は既にファイルアップロードディレクトリに正しく保存されています

これが私のギャラリーコントローラーです:

class Gallery extends CI_Controller {



function index()
{
    $username = $this->session->userdata('username');
    $image = $this->session->userdata('images');

    $this->load->model("gal_model");

    if($this->input->post('upload'))
    {

        $this->gal_model->do_upload();
        $this->gal_model->putGalleryImage($username, $image);

    }




    $viewData['username'] = $username;

    $data['images'] = $this->gal_model->get_images();
    //var_dump($data);

    $this->load->view('shared/header');
    $this->load->view('gallery/galtitle', $viewData);
    $this->load->view('shared/nav');
    $this->load->view('gallery/galview', $data);
    $this->load->view('shared/footer');


}

これが私のギャラリーモデルです:

   class Gal_model extends CI_Model
   {
var $gallery_path;
var $gallery_path_url;

function Gal_model()
{
    parent::__construct();

    $this->gallery_path = 'web-project-jb/assets/gallery';
    $this->gallery_path_url = base_url().'web-project-jb/assets/gallery/';
}   


function exists($username)
{
    $this->db->select('*')->from("gallery")->where('user', $username);
    $query = $this->db->get();

    if ($query->num_rows() > 0)
    {

        return true;
        /*
         echo "user $user exists!";
        $row = $query->row();
        echo " and his profileimage is $row->profileimage";
        */
    }

    else

    {

        return false;
        //echo "no such user as $user!";
    }

}




function do_upload ()
{
   $config = array(
  'allowed_types' => 'gif|jpg|jpeg|png',
  'upload_path' => $this->gallery_path,
  'max_size'   => 10000     
            );


    $this->load->library("upload", $config);
    $this->upload->do_upload();
    $image_data = $this->upload->data();


    $image = 'gallery_path'.$image_data['file_name'];

    $data['image'] = 'gallery_path'.$image_data['file_name'];


    $username = $this->session->userdata('username');

    $this->gal_model->putGalleryImage($username, $image);

    $config = array(
        'source_image'  => $image_data["full_path"],
        'new_image'     => $this->gallery_path. '/thumbs',
        'maintain_ration'   => true,
        'width' => 150,
        'height' => 100     


            );

    $this->load->library("image_lib", $config);
   $this->image_lib->resize();
}


function get_images()
{
    $files = scandir($this->gallery_path);
    $files = array_diff($files, array('.', '..', 'thumbs'));

    $images = array();

    foreach ($files as $file){
        $images[] = array(
            'url'   => $this->gallery_path_url.$file,
            'thumb_url' => $this->gallery_path_url.'thumbs/'.$file


                );

    }

    return $images;
}



function putGalleryImage($username, $image)
{


    $record = array('user' => $username, 'galleryimage' => $image);
    $this->session->set_userdata($image);
    if ($this->exists($username))
    {
        $this->db->where('user', $username)->update('gallery', $record);


    }
    else
    {
        $this->db->where('user', $username)->insert('gallery', $record);

    }

   }

   }

これが私のギャラリービューです:

   <div id="gallery">

   <?=if (isset($images)): 
   foreach($images as $image): ?>
   <div class="thumb">
       <a href="<?php echo $image['url']; ?>">
          <img src ="<?php echo $image['thumb_url']; ?>"/>
       </a>  
       <br>
   </div>
<?php endforeach; else:  ?>
    <div id = "blank_gallery">Please upload an Image</div>
<?php endif; ?>

   <?=form_open_multipart('gallery');?>
    <?=form_upload("userfile");?>
    <?=form_submit('upload', 'Upload')?>
    <?=form_close();?>

助けてくれてありがとう、私はこれを外出する正しい方法を知る必要があるだけです:)。

4

1 に答える 1

0

Invalid argument supplied for foreach()配列ではない変数に対してforeachを実行しようとすると発生する可能性があります。その警告メッセージを削除するには、ギャラリービューを次のように更新します。

<div id="gallery">
   <?=if ( is_array($images) && (count($images)>0) ): 
       foreach($images as $image): ?>
           <div class="thumb">
               <a href="<?php echo $image['url']; ?>">
                  <img src ="<?php echo $image['thumb_url']; ?>"/>
               </a>  
               <br>
           </div>
        <?php endforeach;?>
    <?php else:  ?>
        <div id = "blank_gallery">Please upload an Image</div>
    <?php endif; ?>
<div>   

私はCIに精通していませんが、どこ$imagesから値を取得しますか?

于 2012-12-11T02:31:55.557 に答える