濮阳杆衣贸易有限公司

主頁 > 知識庫 > PHP多個圖片壓縮成ZIP的方法

PHP多個圖片壓縮成ZIP的方法

熱門標簽:哈爾濱400電話辦理到易號網(wǎng) 拉薩打電話機器人 智能外呼電銷系統(tǒng) 電銷機器人-快迭智能 高識別電銷機器人 寶安400電話辦理 沈陽人工智能電銷機器人公司 合肥外呼系統(tǒng)app h5 地圖標注

本文實例為大家分享了PHP多個圖片壓縮成ZIP的具體代碼,供大家參考,具體內(nèi)容如下

可將多個文件壓縮成一個zip壓縮包,文件名可自定義(兼容中文文件名)

?php
header("Content-type: text/html; charset=utf-8"); 
class zipfile {
 var $datasec = array ();
 var $ctrl_dir = array ();
 var $eof_ctrl_dir = "\x50\x4b\x05\x06\x00\x00\x00\x00";
 var $old_offset = 0;
 
 function unix2_dostime($unixtime = 0){
  $timearray = ($unixtime == 0) ? getdate () : getdate($unixtime);  
  if ($timearray ['year']  1980){
   $timearray ['year'] = 1980;
   $timearray ['mon'] = 1;
   $timearray ['mday'] = 1;
   $timearray ['hours'] = 0;
   $timearray ['minutes'] = 0;
   $timearray ['seconds'] = 0;
  }
  return (($timearray ['year'] - 1980)  25) | ($timearray ['mon']  21) | ($timearray ['mday']  16) | ($timearray ['hours']  11) | ($timearray ['minutes']  5) | ($timearray ['seconds'] >> 1);
 }
 function add_file($data, $name, $time = 0){ 
  $name = urldecode($name);   
 //判斷文件名中是否含有中文
 if (preg_match("/[\x7f-\xff]/", $name)) { 
 $name = $this->iconv_to_utf8($name,'GB2312');
 }
 
  $name = str_replace('\\', '/', $name); 
  $dtime = dechex($this->unix2_dostime($time));
  $hexdtime = '\x' . $dtime [6] . $dtime [7] . '\x' . $dtime [4] . $dtime [5] . '\x' . $dtime [2] . $dtime [3] . '\x' . $dtime [0] . $dtime [1];
  eval('$hexdtime = "' . $hexdtime . '";');
  
  $fr = "\x50\x4b\x03\x04";
  $fr .= "\x14\x00";
  $fr .= "\x00\x00";
  $fr .= "\x08\x00";
  $fr .= $hexdtime;
  
  $unc_len = strlen($data);
  $crc = crc32($data);
  $zdata = gzcompress($data);
  $zdata = substr(substr($zdata, 0, strlen($zdata)- 4), 2);
  $c_len = strlen($zdata);
  $fr .= pack('V', $crc);
  $fr .= pack('V', $c_len);
  $fr .= pack('V', $unc_len);
  $fr .= pack('v', strlen($name));
  $fr .= pack('v', 0);
  $fr .= $name;
  
  $fr .= $zdata;
  $fr .= pack('V', $crc);
  $fr .= pack('V', $c_len);
  $fr .= pack('V', $unc_len);
  
  $this->datasec [] = $fr;
  
  $cdrec = "\x50\x4b\x01\x02";
  $cdrec .= "\x00\x00";
  $cdrec .= "\x14\x00";
  $cdrec .= "\x00\x00";
  $cdrec .= "\x08\x00";
  $cdrec .= $hexdtime;  
  $cdrec .= pack('V', $crc);
  $cdrec .= pack('V', $c_len);
  $cdrec .= pack('V', $unc_len);
  $cdrec .= pack('v', strlen($name));  
  $cdrec .= pack('v', 0);
  $cdrec .= pack('v', 0);
  $cdrec .= pack('v', 0);
  $cdrec .= pack('v', 0);
  $cdrec .= pack('V', 32);
  
  $cdrec .= pack('V', $this->old_offset);  
  $this->old_offset += strlen($fr);    
  $cdrec .= $name;      
  $this->ctrl_dir[] = $cdrec;
 }
 function add_path($path, $l = 0){
  $d = @opendir($path);
  $l = $l > 0 ? $l : strlen($path) + 1;
  while($v = @readdir($d)){
   if($v == '.' || $v == '..'){
    continue;
   }
   $v = $path . '/' . $v;
   if(is_dir($v)){
    $this->add_path($v, $l);
   } else {
    $this->add_file(file_get_contents($v), substr($v, $l));
   }
  }
 }
 function file(){
  $data = implode('', $this->datasec);
  $ctrldir = implode('', $this->ctrl_dir);
  return $data . $ctrldir . $this->eof_ctrl_dir . pack('v', sizeof($this->ctrl_dir)) . pack('v', sizeof($this->ctrl_dir)) . pack('V', strlen($ctrldir)) . pack('V', strlen($data)) . "\x00\x00";
 }
 
 function add_files($files){
  foreach($files as $file){   
   if (is_file($file)){
    $data = implode("", file($file));
    $this->add_file($data, $file);
   }
  }
 }
 function output($file){
  $fp = fopen($file, "w");
  fwrite($fp, $this->file ());
  fclose($fp);
 }

 /**
 * 轉(zhuǎn)碼為UTF-8
 * @param $keyword 要轉(zhuǎn)碼的字符串
 */
 function iconv_to_utf8($keyword, $to='UTF-8'){
 $encode = mb_detect_encoding($keyword, array('ASCII','UTF-8','GBK','GB2312'));
 if($encode != $to){
 $keyword = iconv($encode, $to, $keyword);
 }
 return $keyword;
 }


}

$dfile = tempnam('/tmp', 'tmp');//產(chǎn)生一個臨時文件,用于緩存下載文件
$zip = new zipfile();

 


//----------------------
$filename = 'image.zip'; //下載的默認文件名
$filename = $filename;
$host = 'http://test.love11.com';
//$dir_name = $host.'/images/point_qrcode/';
$image = array(
 array('image_src' => 'test2.jpg', 'image_name' => '中文1.jpg'),
 array('image_src' => 'weixin.jpg', 'image_name' => '中文2.jpg'),
);

foreach($image as $v){ 
 $zip->add_file(file_get_contents($dir_name.urlencode($v['image_src'])), $v['image_name']);
 // 添加打包的圖片,第一個參數(shù)是圖片內(nèi)容,第二個參數(shù)是壓縮包里面的顯示的名稱, 可包含路徑
 // 或是想打包整個目錄 用 $zip->add_path($image_path);
}
//----------------------
$zip->output($dfile);
// 下載文件
ob_clean();
header('Pragma: public');
header('Last-Modified:'.gmdate('D, d M Y H:i:s') . 'GMT');
header('Cache-Control:no-store, no-cache, must-revalidate');
header('Cache-Control:pre-check=0, post-check=0, max-age=0');
header('Content-Transfer-Encoding:binary');
header('Content-Encoding:none');
header('Content-type:multipart/form-data');
header('Content-Disposition:attachment; filename="'.$filename.'"'); //設(shè)置下載的默認文件名
header('Content-length:'. filesize($dfile));
$fp = fopen($dfile, 'r');
while(connection_status() == 0  $buf = @fread($fp, 8192)){
 echo $buf;
}
fclose($fp);
@unlink($dfile);
@flush();
@ob_flush();
exit();
?>

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • php高清晰度無損圖片壓縮功能的實現(xiàn)代碼
  • PHP實現(xiàn)圖片壓縮
  • PHP實現(xiàn)圖片壓縮的兩則實例
  • php實現(xiàn)圖片壓縮處理

標簽:威海 成都 山東 梅州 泰州 張家口 林芝 巴中

巨人網(wǎng)絡(luò)通訊聲明:本文標題《PHP多個圖片壓縮成ZIP的方法》,本文關(guān)鍵詞  PHP,多個,圖片,壓,縮成,ZIP,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP多個圖片壓縮成ZIP的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP多個圖片壓縮成ZIP的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    普定县| 商洛市| 泉州市| 山阴县| 屏东市| 宁武县| 丰台区| 新昌县| 枣强县| 嘉黎县| 吉水县| 长沙县| 根河市| 永寿县| 白玉县| 莲花县| 宁乡县| 房山区| 北安市| 潢川县| 广汉市| 库尔勒市| 孝感市| 南岸区| 岑溪市| 平罗县| 红桥区| 乌鲁木齐县| 浦县| 霍邱县| 北安市| 临城县| 西充县| 韶关市| 苏州市| 彰化县| 榆林市| 伊川县| 辛集市| 吉隆县| 建平县|