Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将文件从一个文件夹复制到另一个具有所需名称的文件夹。为了应对我使用
copy($oldfile, $newfile);
还应删除旧文件夹文件的另一件事。如何重命名它们
使用重命名:尝试将旧名称重命名为新名称,必要时在目录之间移动它。如果 newname 存在,它将被覆盖。
rename($oldfile, $newfile);
http://php.net/manual/en/function.rename.php