php目录拷贝实现方法
编程学习 2021-07-05 09:09www.dzhlxh.cn编程入门
这篇文章主要介绍了php目录拷贝实现方法,通过一个自定义递归调用函数实现对目录的拷贝功能,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了php目录拷贝实现方法。分享给大家供大家参考。具体如下:
function copy_dir($src,$dst) { $dir = opendir($src); @mkdir($dst); while(false !== ( $file = readdir($dir)) ) { if (( $file != '.' ) && ( $file != '..' )) { if ( is_dir($src . '/' . $file) ) { copy_dir($src . '/' . $file,$dst . '/' . $file); continue; } else { copy($src . '/' . $file,$dst . '/' . $file); } } } closedir($dir); } copy_dir('e:/www/chat','e:/www/chat3');
希望本文所述对大家的php程序设计有所帮助。
上一篇:PHP实现事件机制的方法
下一篇:php通过前序遍历树实现无需递归的无限极分类