Mysql
 sql >> база данни >  >> RDS >> Mysql

Качване на изображение в MySQL база данни blob в codeigniter

$this->input->post('photo') in model няма да работи за извличане на информацията за изображението. Тъй като изображенията се съхраняват в $_FILES, а не в $_POST. Така че трябва да използвате библиотеката за качване в codeignitor като по-долу.

public function update_profile() {
       $id = $this->session->userdata('id');
       $this->load->model('edit_profile_model');

       $config['upload_path'] = './uploads/';
       $config['allowed_types'] = 'gif|jpg|png';
       $config['max_size']  = '100';
       $config['max_width'] = '1024';
       $config['max_height'] = '768';

       $this->load->library('upload', $config);
       $this->upload->do_upload();//upload the file to the above mentioned path
       $this->edit_profile_model->update_db_user_info($id, $this->upload->data());// pass the uploaded information to the model
   } 
public function update_db_user_info($id, $imgdata) {
       $imgdata = file_get_contents($imgdata['full_path']);//get the content of the image using its path
       $data = array(
           'fullname' => $this->input->post('fullname'),
           'address' => $this->input->post('address'),
           'state' => $this->input->post('state'),
           'city' => $this->input->post('city'),
           'pincode' => $this->input->post('pincode'),
           'image' => $imgdata,
       );
       $this->db->where('id', $id);
       $this->db->update('userdetails', $data);
   } 

За да извлечете изображението, напишете функция в модела, както е по-долу.

public function get_image($id){
       $this->db->where('id', $id);
       $result = $this->db->get('userdetails');
       header("Content-type: image/jpeg");
       echo $result['image'];
}

Освен това не е добра практика да се съхранява изображението и да се извлича от базата данни. Вместо това опитайте да съхраните изображението в папка и да запишете пътя в базата данни, както е по-долу.

public function update_db_user_info($id, $imgdata) {
       $imgdata = $imgdata['full_path'];// get the path of the image
       $data = array(
           'fullname' => $this->input->post('fullname'),
           'address' => $this->input->post('address'),
           'state' => $this->input->post('state'),
           'city' => $this->input->post('city'),
           'pincode' => $this->input->post('pincode'),
           'image' => $imgdata,// change the type of image from blob to varchar or text
       );
       $this->db->where('id', $id);
       $this->db->update('userdetails', $data);
   } 



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. cURL и PHP показват 1

  2. Не може да се възстанови root паролата с --skip-grant-tables на ubuntu 16

  3. Средна стойност на данните за всеки 5 минути в дадените времена

  4. MySQL избира максимален запис в група по

  5. Изтегляне на MySQL dump от командния ред