🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 文件管理 ### 移动文件 bool rename ( string $oldname , string $newname [, resource $context ] ) 移动文件示例: ``` <?php /* ----------- 重命名文件 ------------ */ $oldName = '/home/koogua/tmp/foo.txt'; $newName = '/home/koogua/tmp/foo_new.txt'; rename($oldName, $newName); /* ----------- 移动文件 ------------ */ $source = '/home/koogua/tmp/bar.txt'; $dest = '/home/koogua/tmp/2017/bar.txt'; rename($source, $dest); // 类似 “剪切” ?> ``` ### 拷贝文件 bool copy ( string $source , string $dest [, resource $context ] ) 拷贝文件示例: ``` <?php $source = '/home/koogua/tmp/bar.txt'; $dest = '/home/koogua/tmp/2017/bar.txt'; rename($source, $dest); ?> ``` ### 删除文件 bool unlink ( string $filename [, resource $context ] ) 拷贝文件示例: ``` <?php $filename = '/home/koogua/tmp/bar.txt'; unlink($filename); ?> ```