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代码片段: sendFile/videoStream/sendEmail/phpexcel/ffmpeg/zip