gpt4 book ai didi

php - 如何使用 codeigniter 在 mysql 中保存图像?

转载 作者:行者123 更新时间:2023-11-29 01:54:26 24 4
gpt4 key购买 nike

到目前为止,总是在数据库中保存图像的路径,但这次,我必须在数据库中保存实际图像。我在我的表中为此准备了一个字段(longblob)

我的 Controller 中有这段代码:

 $insertWhat = array(

'dsrequestFileName1' => $this->input->post('dsrequestFileName1'),
'dsrequestFile1' => isset($_FILES['dsrequestFile1']['name'])? $_FILES['dsrequestFile1']['name'] : '',
'dsrequestFileName2' => $this->input->post('dsrequestFileName2'),
'dsrequestFile2' => isset($_FILES['dsrequestFile2']['name'])? $_FILES['dsrequestFile2']['name'] : ''
);

$now = date('Y-m-d-His');
$valid_extensions = array('gif', 'jpg', 'jpeg', 'png', 'bmp','');
if($insertWhat['dsrequestFile1'] !=""){
if (!in_array(end(explode('.', strtolower($_FILES['dsrequestFile1']['name']))), $valid_extensions)) {
$this->session->set_flashdata('wrongtype', '<p class=error>Wrong type of file has been uploaded! Only gif, jpg, bmp and png are allowed.</p>');
redirect('somepage/somefunctionHere');
}
$insertWhat['dsrequestFile1'] = str_replace(' ', '_',$insertWhat['dsrequestFile1']);
$insertWhat['dsrequestFile1'] = $now.$insertWhat['dsrequestFile1'];
}

$config['upload_path'] = 'somefolder/imagesfolder';
$config['allowed_types'] = 'gif|jpg|jpeg|bmp|png';
$config['max_size'] = '2048';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$config['file_name'] = $insertWhat['dsrequestFile1'];
$this->load->library('upload', $config);
$this->upload->initialize($config);
// perform the upload
$this->upload->do_upload('dsrequestFile1');
$data = array('upload_data' => $this->upload->data('dsrequestFile1'));
// code that saves the insert data is irrelevant to the question, I can post it here if needed however.

但是,这段代码只上传图片。我应该在这里更改什么,以便将图像保存在数据库中。如果可能的话,我不想上传图片。

不幸的是,CI 手册中对此没有任何内容。

最佳答案

你好,请试试这个代码

   if($this->input->post('update_list'))
{
if($this->upload->do_upload('profile_pic'))
{
$image_file = array('upload_data' => $this->upload->data());
$img_name=file_get_contents($image_file); /* This function move to image in your database*/


$this->your_mode->add_image_table($img_name);// pass image as parameter to your model
}

}

关于php - 如何使用 codeigniter 在 mysql 中保存图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33100119/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com