|
我在上传非中文的文件时正常,但上传带有中文字符文件名的文件时,提示A problem was encountered while attempting to move the uploaded file to the final destination.很郁闷,找不到好的解决方案,请大家帮小弟一下,谢谢!
我的代码:
PHP复制代码
function upload() {
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
/*
A problem was encountered while attempting to move the uploaded file to the final destination.
这个错误一般是上传文件的文件名不能是中文名,这个很郁闷!还未解决,大家可以用其它方法,重新改一下文件名就可以解决了!
*/
$config['max_size'] = '1024';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if(!$this->upload->do_upload()) {
echo $this->upload->display_errors();
}
} 复制代码
此帖来自:http://www.php.la/bbs/thread-102-1-1.html
请高手解释一下出错的原因和解决方法! |
|