php 复制文件夹

Posted 邹喆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 复制文件夹相关的知识,希望对你有一定的参考价值。

public function recurse_copy($src,$des) {

        $dir = opendir($src);

        @mkdir($des);

        while(false !== ( $file = readdir($dir)) ) {

                 if (( $file != ‘.‘ ) && ( $file != ‘..‘ )) {

                        if ( is_dir($src . ‘/‘ . $file) ) {

                                $this->recurse_copy($src . ‘/‘ . $file,$des . ‘/‘ . $file);

                        }  else  {

                                copy($src . ‘/‘ . $file,$des . ‘/‘ . $file);

                        }

                }

          }
          closedir($dir);

    }

 

以上是关于php 复制文件夹的主要内容,如果未能解决你的问题,请参考以下文章

PHP常用代码片段

php代码片段: sendFile/videoStream/sendEmail/phpexcel/ffmpeg/zip

有趣的 C++ 代码片段,有啥解释吗? [复制]

如何在 PHP“回声”中插入带有撇号和其他特殊字符的文本? [复制]

这两个代码片段之间有区别吗?如果有,那又如何? [复制]

超级有用的9个PHP代码片段