Anil Chaudhari
Anil Chaudhari

Reputation: 841

How to move existed image to another folder in Yii?

I have a directory already existed some images. Now I would like to move some of those image to another folder.

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

The above code shows file is existed there, But while I try to move That file to another folder such as

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

Though, it's not working . Where I have made mistake? Thanks in advance.... :)

Upvotes: 1

Views: 916

Answers (1)

Adrian Cid Almaguer
Adrian Cid Almaguer

Reputation: 7791

<?php

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

?>

Upvotes: 3

Related Questions