|
提示 The filetype you are attempting to upload is not allowed.
PHP复制代码
function do_upload () {
//echo getcwd().'\uploads';
//exit;
$config ['upload_path'] = './uploads/';
$config ['allowed_types'] = 'gif|jpg|jpeg|png|';
$config ['encrypt_name'] = true;
$config ['max_size'] = '1000';
$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 );
}
}
复制代码 |
|