Move a file from one folder to another
In PHP we don’t have direct function for moving a file from
one folder to another . But we can achieve the same using the
function rename()
int rename ( string oldname, string newname)
eg
/home/category/new.txt
to move new.txt to “home”
we can use rename as
rename(’/home/category/new.txt’,/home/new.txt’);
