请快速查看下面的内容,这里有什么问题?
$tmp_img_path="../temp_images/";
$name_image1="mypicture.jpeg";
$new_img_path="../images/";
rename($temp_img_path.$name_image1, $new_img_path.'thumbs/');
我想找到文件名为$ name_image1的文件并将其放在新路径中,但是在名为'thumbs'的文件夹中。
我在浏览器中收到警告重命名功能!
由于
答案 0 :(得分:0)
您正在将文件重命名为目录
rename($temp_img_path.$name_image1, $new_img_path.'thumbs/');
试
rename($temp_img_path.$name_image1, $new_img_path.'thumbs/'.$name_image1);