如何将现有图像移动到 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);

?>