Question: What function can transfer files from one directory to another?
Answer: There is no direct transfer function in PHP. But you can try to do it this way.
rename("a/ss.txt","b/ss.txt");
?>
http://www.bkjia.com/PHPjc/632463.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632463.htmlTechArticleQ: What function can transfer files from one directory to another? Answer: There is no direct transfer function in PHP. But you can try to do it this way. ?php rename("a/ss...