VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php通过递归方式复制目录和子目录的方法

这篇文章主要介绍了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. ?>
  18.  



出处:http://www.phpfensi.com/php/20210516/15426.html


相关教程