多应用+插件架构,代码干净,支持一键云编译,码云点赞13K star,4.8-4.12 预售价格198元 广告
## 文件管理 ### 移动文件 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); ?> ```