我无法找到小错误,请检查此rename()函数

时间:2009-11-17 20:15:54

标签: php

请快速查看下面的内容,这里有什么问题?

$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'的文件夹中。

我在浏览器中收到警告重命名功能!

由于

1 个答案:

答案 0 :(得分:0)

您正在将文件重命名为目录

rename($temp_img_path.$name_image1, $new_img_path.'thumbs/');

rename($temp_img_path.$name_image1, $new_img_path.'thumbs/'.$name_image1);