|
下面代码是我写的上传图片代码,但是总是上传不了,什么问题?请各位高手指教。
//上传附件
$config['upload_path'] = 'uploads/'.date('Ym').'/';
/*if (!is_dir($config['upload_path'])){
@mk_dir($config['upload_path'], 0777);
}*/
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$config['file_name'] = $this->input->post('image');
$config['encrypt_name'] = TRUE;
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload()) {
$error = array('error' => $this->upload->display_errors());
} else {
$data['image'] = $this->upload->file_name;
$data['path'] = $config['upload_path'];
}
|
|