当前位置:首页 > PHP教程 > php文件操作 > 列表

php通过递归方式复制目录和子目录的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-16 12:36:04 浏览: 评论:0 

这篇文章主要介绍了php通过递归方式复制目录和子目录的方法,涉及php递归及目录操作的技巧,具有一定参考借鉴价值,需要的朋友可以参考下。

本文实例讲述了php通过递归方式复制目录和子目录的方法,分享给大家供大家参考,具体实现方法如下:

  1. <?php  
  2. function recurse_copy($src,$dst){  
  3.   $dir = opendir($src);  
  4.   @mkdir($dst);  
  5.   while(false !== ( $file = readdir($dir)) ) {  
  6.     if (( $file != '.' ) && ( $file != '..' )) {  
  7.       if ( is_dir($src . '/' . $file) ) {  
  8.         recurse_copy($src.'/'.$file,$dst.'/'.$file);  
  9.       }  
  10.       else {  
  11.         copy($src.'/'.$file,$dst.'/'.$file);  
  12.       }  
  13.     }  
  14.   }  
  15.   closedir($dir);  
  16. }  
  17. ?>

Tags: php复制目录 php子目录

分享到: