摘要:
"; $dir = getcwd(); //根目录 chdir("file"); //找到file文件夹 $dir = getcwd(); //将文件路径更改为更:目录/file $creafile = ftp_mkdir($conn,"file"); //上传前建立文件夹file $handle = opendir("$dir"); while(($file = readdir($handle)) !== false) { $ftp = ftp_put($conn,"... 阅读全文
摘要:
首先将压缩代码Zip.php放到php目录中//zip.phpopenFile($dir,$dir); $out = $this -> filezip(); $fp = fopen($zipfilename, "w"); fwrite($fp, $out, strlen($out)); fclose($fp); } } function openFile($path, $zipName) { $temp_path = $path; $temp_zip_path = $zipName; $zipDir = $zipName; if ($handle... 阅读全文