php上传打包下载,php在线打包下载

<?php $button=""; if(isset($_POST['button'])){     $button=$_POST['button']; } if($button=="下载") {     $zip = new ZipArchive();     $filename = "./myimages.zip";     if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) {         exit("无法创建 \n");         }     $files = listdir();     foreach($files as $path)     {         $zip->addFile($path,str_replace("./","",str_replace("\\","/",$path)));     }     echo "压缩完成,共压缩了: " . $zip->numFiles . "个文件\n";     $zip->close(); } Function listdir($start_dir='./myimages/') {   $files = array();   if (is_dir($start_dir)) {    $fh = opendir($start_dir);    while (($file = readdir($fh)) !== false) {      if (strcmp($file, '.')==0 || strcmp($file, '..')==0) continue;      $filepath = $start_dir . '/' . $file;      if ( is_dir($filepath) )        $files = array_merge($files, listdir($filepath));      else        array_push($files, $filepath);    }    closedir($fh);   } else {    $files = false;   }  return $files; } ?>    

        下载                                    
               
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值