Makezip.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. namespace addons\yexam\library\makezip;
  3. class Makezip{
  4. /**
  5. * description:主方法:生成压缩包
  6. * @author: MY
  7. * @param $dir_path 想要压缩的目录:如 './demo/'
  8. * @param $zipName 压缩后的文件名:如 './folder/demo.zip'
  9. * @return string
  10. */
  11. public static function zip($dir_path, $zipName)
  12. {
  13. $relationArr = array(
  14. $dir_path => array(
  15. 'originName' => $dir_path,
  16. 'is_dir' => true,
  17. 'children' => array()
  18. )
  19. );
  20. self::modifiyFileName($dir_path, $relationArr[$dir_path]['children']);
  21. $key = array_keys($relationArr);
  22. $val = array_values($relationArr);
  23. $zip = new \ZipArchive();
  24. //ZIPARCHIVE::CREATE没有即是创建
  25. $zip->open($zipName, \ZipArchive::CREATE | \ZipArchive::OVERWRITE);
  26. self::zipDir($key[0], '', $zip, $val[0]['children']);
  27. $zip->close();
  28. self::restoreFileName($key[0], $val[0]['children']);
  29. return true;
  30. }
  31. public static function zipDir($real_path, $zip_path, &$zip, $relationArr)
  32. {
  33. $sub_zip_path = empty($zip_path) ? '' : $zip_path . '\\';
  34. if (is_dir($real_path)) {
  35. foreach ($relationArr as $k => $v) {
  36. if ($v['is_dir']) { //是文件夹
  37. $zip->addEmptyDir($sub_zip_path . $v['originName']);
  38. self::zipDir($real_path . '\\' . $k, $sub_zip_path . $v['originName'], $zip, $v['children']);
  39. } else { //不是文件夹
  40. $zip->addFile($real_path . $k, $sub_zip_path . $k);
  41. $zip->deleteName($sub_zip_path . $v['originName']);
  42. $zip->renameName($sub_zip_path . $k, $sub_zip_path . $v['originName']);
  43. }
  44. }
  45. }
  46. }
  47. public static function modifiyFileName($path, &$relationArr)
  48. {
  49. if (!is_dir($path) || !is_array($relationArr)) {
  50. return false;
  51. }
  52. if ($dh = opendir($path)) {
  53. $count = 0;
  54. while (($file = readdir($dh)) !== false) {
  55. if(in_array($file,array('.', '..', null))) continue; //无效文件,重来
  56. if (is_dir($path . '/' . $file)) {
  57. $newName = md5(rand(0, 99999) . rand(0, 99999) . rand(0, 99999) . microtime() . 'dir' . $count);
  58. $relationArr[$newName] = array(
  59. 'originName' => iconv('GBK', 'UTF-8', $file),
  60. 'is_dir' => true,
  61. 'children' => array()
  62. );
  63. rename($path . '/' . $file, $path . '/' . $newName);
  64. self::modifiyFileName($path . '/' . $newName, $relationArr[$newName]['children']);
  65. $count++;
  66. } else {
  67. $extension = strchr($file, '.');
  68. $newName = md5(rand(0, 99999) . rand(0, 99999) . rand(0, 99999) . microtime() . 'file' . $count);
  69. $relationArr[$newName . $extension] = array(
  70. 'originName' => $file,
  71. 'is_dir' => false,
  72. 'children' => array()
  73. );
  74. rename($path . '/' . $file, $path . '/' . $newName . $extension);
  75. $count++;
  76. }
  77. }
  78. }
  79. }
  80. public static function restoreFileName($path, $relationArr)
  81. {
  82. foreach ($relationArr as $k => $v) {
  83. if (!empty($v['children'])) {
  84. self::restoreFileName($path . '\\' . $k, $v['children']);
  85. rename($path . '/' . $k, iconv('UTF-8', 'GBK', $path . '/' . $v['originName']));
  86. } else {
  87. rename($path . '/' . $k, $v['originName']);
  88. }
  89. }
  90. }
  91. }