Warning: move_uploaded_file 中文上传问题

Warning: move_uploaded_file(../upload/attach/sean/������վ����.doc) [function.move-uploaded-file]: failed to open stream: No such file or directory inD:\xampp\htdocs\test\control\post_save.php on line 46

Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'D:\xampp\tmp\phpA63E.tmp' to '../upload/attach/sean/������վ����.doc' inD:\xampp\htdocs\test\control\post_save.php on line 46

解决办法

$destPath =  '../upload/attach/sean/������վ����.doc

move_uploaded_file($_FILES["attach"]["tmp_name"][$index],$destPath);

改为

$destPath =  './../upload/attach/sean/������վ����.doc

这边是行了

猜你喜欢

转载自yanshaozhi.iteye.com/blog/1349284
今日推荐