点击一个按钮,实现将多张图片打包下载,需要有提示那种,就是提示将打包文件放到什么目录的那种,求指导

WBOY
풀어 주다: 2016-06-23 13:54:07
원래의
1026명이 탐색했습니다.

点击一个按钮,实现将多张图片打包下载,需要有提示那种,就是提示将打包文件放到什么目录的那种,求指导 


回复讨论(解决方案)

打包?考??: http://justcoding.iteye.com/blog/660812

下载提示那种。

<?php$file = 'test.zip';  if(file_exists($file)){      header('content-type:application/octet-stream');      header('content-disposition:attachment; filename='.basename($file));      header('content-length:'.filesize($file));      readfile($file);  }  ?>
로그인 후 복사
로그인 후 복사


我的图片怎样打包成如test.zip文件呢,求指导

$zipname = 'test.zip';$filelist = array_slice(glob('images/*'), 0, 10);//待压缩文件列表$zip = new ZipArchive;$zip->open($zipname, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE); foreach($filelist as $fn){  $zip->addFile($fn);}$zip->close();
로그인 후 복사
로그인 후 복사

打包?考??: http://justcoding.iteye.com/blog/660812

下载提示那种。

<?php$file = 'test.zip';  if(file_exists($file)){      header('content-type:application/octet-stream');      header('content-disposition:attachment; filename='.basename($file));      header('content-length:'.filesize($file));      readfile($file);  }  ?>
로그인 후 복사
로그인 후 복사



$zipname = 'test.zip';$filelist = array_slice(glob('images/*'), 0, 10);//待压缩文件列表$zip = new ZipArchive;$zip->open($zipname, ZIPARCHIVE::CREATE | ZIPARCHIVE::OVERWRITE); foreach($filelist as $fn){  $zip->addFile($fn);}$zip->close();
로그인 후 복사
로그인 후 복사


整合下这两个就可以了,经测试妥妥的。
然后就拿版主和二楼的结合写了个方法:
function zipAndDownload($zipFileName,$zipDir){        if(file_exists($zipFileName)){            unlink($zipFileName);            $zipFile = new ZipArchive();            $fileList = array_slice(glob($zipDir) , 0 ); //待压缩文件列表            $zipFile -> open($zipFileName , ZipArchive::CREATE | ZipArchive::OVERWRITE);            foreach ($fileList as $files){                $zipFile -> addFile($files);            }            $zipFile -> close();            if(file_exists($zipFileName)){                  header('content-type:application/octet-stream');                  header('content-disposition:attachment; filename='.basename($zipFileName));                  header('content-length:'.filesize($zipFileName));                  readfile($zipFileName);              }          }     }
로그인 후 복사

如??已解?,???。

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿