php打包备份好的数据库文件(也可打包别的文件)

简介:
 
  1. <?php 
  2. $z = new PHPZip(); 
  3. $file = array('1.jpg'); 
  4. $zipname = time() . '.zip'
  5. $z->Zip($file$zipname); 
  6.  
  7. /** 
  8. 以下是其他调用这个类的方法: 
  9. $z = new PHPZip(); //新建立一个zip的类 
  10.  
  11. 方法一: 
  12. $z -> Zip("", "out1.zip"); //添加当前目录和子目录下的所有档案 
  13.  
  14. 方法二: 
  15. $files=array('1.txt','gb.txt'); 
  16. $files[]='5.txt'; 
  17. $z -> Zip($files, "out2.zip"); //添加文件列表 
  18.  
  19. 方法三: 
  20. $z -> Zip("/usr/local/sext/", "out3.zip"); //添加指定目录 
  21. */ 
  22.  
  23. class PHPZip 
  24. function Zip($dir$zipfilename
  25. if (@function_exists('gzcompress')) 
  26. $curdir = getcwd(); 
  27. if (is_array($dir)) 
  28. $filelist = $dir
  29. else 
  30. $filelist = $this -> GetFileList($dir); 
  31.  
  32. if ((!emptyempty($dir))&&(!is_array($dir))&&(file_exists($dir))) chdir($dir); 
  33. else chdir($curdir); 
  34.  
  35. if (count($filelist)>0) 
  36. foreach($filelist as $filename
  37. if (is_file($filename)) 
  38. $fd = fopen ($filename"r"); 
  39. $content = fread ($fdfilesize ($filename)); 
  40. fclose ($fd); 
  41.  
  42. if (is_array($dir)) $filename = basename($filename); 
  43. $this -> addFile($content$filename); 
  44. $out = $this -> file(); 
  45.  
  46. chdir($curdir); 
  47. $fp = fopen($zipfilename"w"); 
  48. fwrite($fp$outstrlen($out)); 
  49. fclose($fp); 
  50. return 1; 
  51. else return 0; 
  52.  
  53. function GetFileList($dir
  54. if (file_exists($dir)) 
  55. $args = func_get_args(); 
  56. $pref = $args[1]; 
  57.  
  58. $dh = opendir($dir); 
  59. while($files = readdir($dh)) 
  60. if (($files!=".")&&($files!="..")) 
  61. if (is_dir($dir.$files)) 
  62. $curdir = getcwd(); 
  63. chdir($dir.$files); 
  64. $file = array_merge($file$this -> GetFileList("""$pref$files/")); 
  65. chdir($curdir); 
  66. else $file[]=$pref.$files
  67. closedir($dh); 
  68. return $file
  69.  
  70. var $datasec      = array(); 
  71. var $ctrl_dir     = array(); 
  72. var $eof_ctrl_dir = "\x50\x4b\x05\x06\x00\x00\x00\x00"
  73. var $old_offset   = 0; 
  74.  
  75. /** 
  76. * Converts an Unix timestamp to a four byte DOS date and time format (date 
  77. * in high two bytes, time in low two bytes allowing magnitude comparison). 
  78. * 
  79. * @param integer the current Unix timestamp 
  80. * 
  81. * @return integer the current date in a four byte DOS format 
  82. * 
  83. * @access private 
  84. */ 
  85. function unix2DosTime($unixtime = 0) { 
  86. $timearray = ($unixtime == 0) ? getdate() : getdate($unixtime); 
  87.  
  88. if ($timearray['year'] < 1980) { 
  89. $timearray['year']    = 1980; 
  90. $timearray['mon']     = 1; 
  91. $timearray['mday']    = 1; 
  92. $timearray['hours']   = 0; 
  93. $timearray['minutes'] = 0; 
  94. $timearray['seconds'] = 0; 
  95. // end if 
  96.  
  97. return (($timearray['year'] - 1980) << 25) | ($timearray['mon'] << 21) | ($timearray['mday'] << 16) | 
  98. ($timearray['hours'] << 11) | ($timearray['minutes'] << 5) | ($timearray['seconds'] >> 1); 
  99. // end of the 'unix2DosTime()' method 
  100.  
  101.  
  102. /** 
  103. * Adds "file" to archive 
  104. * 
  105. * @param string   file contents 
  106. * @param string   name of the file in the archive (may contains the path) 
  107. * @param integer the current timestamp 
  108. * 
  109. * @access public 
  110. */ 
  111. function addFile($data$name$time = 0) 
  112. $name     = str_replace('\\', '/', $name); 
  113.  
  114. $dtime    = dechex($this->unix2DosTime($time)); 
  115. $hexdtime = '\x' . $dtime[6] . $dtime[7] 
  116. '\x' . $dtime[4] . $dtime[5] 
  117. '\x' . $dtime[2] . $dtime[3] 
  118. '\x' . $dtime[0] . $dtime[1]; 
  119. eval('$hexdtime = "' . $hexdtime . '";'); 
  120.  
  121. $fr   = "\x50\x4b\x03\x04"
  122. $fr   .= "\x14\x00";            // ver needed to extract 
  123. $fr   .= "\x00\x00";            // gen purpose bit flag 
  124. $fr   .= "\x08\x00";            // compression method 
  125. $fr   .= $hexdtime;             // last mod time and date 
  126.  
  127. // "local file header" segment 
  128. $unc_len = strlen($data); 
  129. $crc     = crc32($data); 
  130. $zdata   = gzcompress($data); 
  131. $c_len   = strlen($zdata); 
  132. $zdata   = substr(substr($zdata, 0, strlen($zdata) - 4), 2); // fix crc bug 
  133. $fr      .= pack('V'$crc);             // crc32 
  134. $fr      .= pack('V'$c_len);           // compressed filesize 
  135. $fr      .= pack('V'$unc_len);         // uncompressed filesize 
  136. $fr      .= pack('v'strlen($name));    // length of filename 
  137. $fr      .= pack('v', 0);                // extra field length 
  138. $fr      .= $name
  139.  
  140. // "file data" segment 
  141. $fr .= $zdata
  142.  
  143. // "data descriptor" segment (optional but necessary if archive is not 
  144. // served as file) 
  145. $fr .= pack('V'$crc);                 // crc32 
  146. $fr .= pack('V'$c_len);               // compressed filesize 
  147. $fr .= pack('V'$unc_len);             // uncompressed filesize 
  148.  
  149. // add this entry to array 
  150. $this -> datasec[] = $fr
  151. $new_offset        = strlen(implode(''$this->datasec)); 
  152.  
  153. // now add to central directory record 
  154. $cdrec = "\x50\x4b\x01\x02"
  155. $cdrec .= "\x00\x00";                // version made by 
  156. $cdrec .= "\x14\x00";                // version needed to extract 
  157. $cdrec .= "\x00\x00";                // gen purpose bit flag 
  158. $cdrec .= "\x08\x00";                // compression method 
  159. $cdrec .= $hexdtime;                 // last mod time & date 
  160. $cdrec .= pack('V'$crc);           // crc32 
  161. $cdrec .= pack('V'$c_len);         // compressed filesize 
  162. $cdrec .= pack('V'$unc_len);       // uncompressed filesize 
  163. $cdrec .= pack('v'strlen($name) ); // length of filename 
  164. $cdrec .= pack('v', 0 );             // extra field length 
  165. $cdrec .= pack('v', 0 );             // file comment length 
  166. $cdrec .= pack('v', 0 );             // disk number start 
  167. $cdrec .= pack('v', 0 );             // internal file attributes 
  168. $cdrec .= pack('V', 32 );            // external file attributes - 'archive' bit set 
  169.  
  170. $cdrec .= pack('V'$this -> old_offset ); // relative offset of local header 
  171. $this -> old_offset = $new_offset
  172.  
  173. $cdrec .= $name
  174.  
  175. // optional extra field, file comment goes here 
  176. // save to central directory 
  177. $this -> ctrl_dir[] = $cdrec
  178. // end of the 'addFile()' method 
  179.  
  180.  
  181. /** 
  182. * Dumps out file 
  183. * 
  184. * @return string the zipped file 
  185. * 
  186. * @access public 
  187. */ 
  188. function file() 
  189. $data    = implode(''$this -> datasec); 
  190. $ctrldir = implode(''$this -> ctrl_dir); 
  191.  
  192. return 
  193. $data . 
  194. $ctrldir . 
  195. $this -> eof_ctrl_dir . 
  196. pack('v', sizeof($this -> ctrl_dir)) . // total # of entries "on this disk" 
  197. pack('v', sizeof($this -> ctrl_dir)) . // total # of entries overall 
  198. pack('V'strlen($ctrldir)) .           // size of central dir 
  199. pack('V'strlen($data)) .              // offset to start of central dir 
  200. "\x00\x00";                             // .zip file comment length 
  201. // end of the 'file()' method 
  202.  
  203.  
  204. // end of the 'PHPZip' class 
  205.  
  206. ?> 

 

      本文转自许琴 51CTO博客,原文链接:http://blog.51cto.com/xuqin/882336,如需转载请自行联系原作者


相关文章
|
4月前
|
存储 关系型数据库 MySQL
mysql数据库备份与恢复
MySQL数据库的备份与恢复是确保数据安全性和业务连续性的关键操作。
171 4
|
3月前
|
存储 SQL 关系型数据库
PHP与数据库交互:从基础到进阶
【10月更文挑战第9天】在编程的世界里,数据是流动的血液,而数据库则是存储这些珍贵资源的心脏。PHP作为一门流行的服务器端脚本语言,其与数据库的交互能力至关重要。本文将带你从PHP与数据库的基本连接开始,逐步深入到复杂查询的编写和优化,以及如何使用PHP处理数据库结果。无论你是初学者还是有一定经验的开发者,这篇文章都将为你提供宝贵的知识和技巧,让你在PHP和数据库交互的道路上更加从容不迫。
|
2月前
|
SQL 关系型数据库 MySQL
12 PHP配置数据库MySQL
路老师分享了PHP操作MySQL数据库的方法,包括安装并连接MySQL服务器、选择数据库、执行SQL语句(如插入、更新、删除和查询),以及将结果集返回到数组。通过具体示例代码,详细介绍了每一步的操作流程,帮助读者快速入门PHP与MySQL的交互。
58 1
|
2月前
|
关系型数据库 MySQL Linux
Linux环境下MySQL数据库自动定时备份实践
数据库备份是确保数据安全的重要措施。在Linux环境下,实现MySQL数据库的自动定时备份可以通过多种方式完成。本文将介绍如何使用`cron`定时任务和`mysqldump`工具来实现MySQL数据库的每日自动备份。
175 3
|
2月前
|
监控 关系型数据库 MySQL
Linux环境下MySQL数据库自动定时备份策略
在Linux环境下,MySQL数据库的自动定时备份是确保数据安全和可靠性的重要措施。通过设置定时任务,我们可以每天自动执行数据库备份,从而减少人为错误和提高数据恢复的效率。本文将详细介绍如何在Linux下实现MySQL数据库的自动定时备份。
81 3
|
3月前
|
存储 定位技术 数据库
介绍一下数据库的备份和恢复策略
【10月更文挑战第21】介绍一下数据库的备份和恢复策略
|
2月前
|
数据库
【赵渝强老师】数据库的备份方式
备份数据库是指将数据库中的数据及相关信息保存起来,以便在系统故障时恢复。备份对象不仅限于数据本身,还包括数据库对象、用户权限等。根据备份策略、类型和模式的不同,可分为整体/部分备份、完全/增量备份、一致/非一致备份。文中还附有相关视频讲解。
|
4月前
进入靶场,出现一张照片,右击查看源代码,发现有一个注释的source.php文件
这段代码实现了一个网站上弹出的促销海报动画效果,包含一个关闭按钮。当促销海报弹出时,会在三秒后开始抖动一两下。海报使用固定定位居中显示,带有阴影和圆角,关闭按钮位于右上角。可以通过修改时间参数调整弹出时间。
31 0
|
2月前
|
前端开发 关系型数据库 MySQL
PHP与MySQL动态网站开发实战指南####
【10月更文挑战第21天】 本文将深入浅出地探讨如何使用PHP与MySQL构建一个动态网站,从环境搭建到项目部署,全程实战演示。无论你是编程新手还是希望巩固Web开发技能的老手,都能在这篇文章中找到实用的技巧和启发。我们将一起探索如何通过PHP处理用户请求,利用MySQL存储数据,并最终呈现动态内容给用户,打造属于自己的在线平台。 ####
73 0
|
1月前
|
存储 关系型数据库 MySQL
PHP与MySQL动态网站开发:从基础到实践####
本文将深入探讨PHP与MySQL的结合使用,展示如何构建一个动态网站。通过一系列实例和代码片段,我们将逐步了解数据库连接、数据操作、用户输入处理及安全防护等关键技术点。无论您是初学者还是有经验的开发者,都能从中获益匪浅。 ####