通过“上传”库上传图片时遇到了一个奇怪的问题。
当我有大量的照片,比如1,8mb大时,它总是将它们颠倒上传。
否则会正常上传。
我上传的模型看起来像这样
function do_upload() {
$this->gallery_path = realpath(APPPATH . '../public/images');
$config = array(
'upload_path' => $this->gallery_path,
'allowed_types' => 'jpg|jpeg|gif|png',
'max_size' => 2000
);
$this->load->library('upload',$config);
$this->upload->do_upload();
$image_data = $this->upload->data();
//to db
$filename=$image_data['file_name'];
$this->db->set('name', $filename);
$this->db->insert('images');
}
任何人都可以解释为什么会这样吗?我试图增加最大尺寸以确定它是否会有所帮助,但事实并非如此。
感谢一些帮助:)
答案 0 :(得分:0)
尝试设置上传配置:
$config['max_size'] = 0;