数据库中图像上载所需的Codeigniter代码

时间:2016-05-13 09:27:47

标签: php codeigniter

我需要完整的代码,我可以在数据库中上传完整的图像大小(不仅是图像路径,还包括整个图像大小)。提前谢谢

2 个答案:

答案 0 :(得分:1)

将您使用以下代码的图像或文件上传到控制器

function do_upload()
{
    $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);

    if ( ! $this->upload->do_upload())
    {
        $error = array('error' => $this->upload->display_errors());

        $this->load->view('upload_form', $error);
    }
    else
    {
        $data = array('upload_data' => $this->upload->data());

        $this->load->view('upload_success', $data);
    }
}

Refferecne:Codeigniter Files upload guideline

如果你想使用Ajax上传图像,那么请不要忘记敲门然后我将给出整个代码块。

谢谢!

答案 1 :(得分:0)

您是否尝试将图像转换为字节并将其保存在MYSQL数据库中? 如果是,请尝试此代码

skippable-exception-classes