如何将已存在的图像移动到Yii中的另一个文件夹


How to move existed image to another folder in Yii?

我有一个目录已经存在一些图像。现在我想将其中一些图像移到另一个文件夹中。

if(file_exists(Yii::app()->basePath.'/../images/Banner/temp/'.$ads->image)) 
                    print_r('file existed'); 

上面的代码显示文件已经存在,但当我试图将该文件移动到另一个文件夹(如)时

move_uploaded_file(Yii::app()->basePath.'/../images/Banner/temp/'.$ads->image, Yii::app()->basePath.'/../images/Banner/new/'.$ads->image);

不过,它不起作用。我哪里做错了?提前感谢……:)

<?php
rename(Yii::app()->basePath.'/../images/Banner/temp/'.$ads->image, Yii::app()->basePath.'/../images/Banner/new/'.$ads->image);
?>