Zip.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. declare(strict_types=1);
  3. // +----------------------------------------------------------------------
  4. // | CatchAdmin [Just Like ~ ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  9. // +----------------------------------------------------------------------
  10. // | Author: JaguarJack [ njphper@gmail.com ]
  11. // +----------------------------------------------------------------------
  12. namespace catcher\library;
  13. use catcher\facade\FileSystem;
  14. class Zip
  15. {
  16. protected $zipArchive;
  17. const EXTENSION = 'zip';
  18. protected $folder;
  19. public function __construct()
  20. {
  21. $this->zipArchive = new \ZipArchive();
  22. }
  23. /**
  24. * zip 文件
  25. *
  26. * @time 2020年07月19日
  27. * @param $zip
  28. * @param null $flags
  29. * @return $this
  30. * @throws \Exception
  31. */
  32. public function make($zip, $flags = null)
  33. {
  34. if (FileSystem::extension($zip) != self::EXTENSION) {
  35. throw new \Exception("make zip muse set [zip] extension");
  36. }
  37. $this->zipArchive->open($zip, $flags);
  38. return $this;
  39. }
  40. /**
  41. * 添加文件
  42. *
  43. * @time 2020年07月19日
  44. * @param $files
  45. * @param bool $relative
  46. * @return $this
  47. */
  48. public function addFiles($files, $relative = true)
  49. {
  50. if ($relative) {
  51. foreach ($files as $file) {
  52. $this->zipArchive->addFile($file->getPathname(), $this->folder . $file->getRelativePathname());
  53. }
  54. } else {
  55. foreach ($files as $file) {
  56. $this->zipArchive->addFile($file->getPathname(), $this->folder . $file->getPathname());
  57. }
  58. }
  59. return $this;
  60. }
  61. /**
  62. * 根目录
  63. *
  64. * @time 2020年07月19日
  65. * @param string $folder
  66. * @return $this
  67. */
  68. public function folder(string $folder)
  69. {
  70. $this->zipArchive->addEmptyDir($folder);
  71. $this->folder = $folder . DIRECTORY_SEPARATOR;
  72. return $this;
  73. }
  74. /**
  75. * 解压到
  76. *
  77. * @time 2020年07月19日
  78. * @param $path
  79. * @return $this
  80. * @throws \Exception
  81. */
  82. public function extractTo($path)
  83. {
  84. if (!$this->zipArchive->extractTo($path)) {
  85. throw new \Exception('extract failed');
  86. }
  87. return $this;
  88. }
  89. public function getFiles()
  90. {
  91. $this->zipArchive;
  92. }
  93. /**
  94. * 关闭
  95. *
  96. * @time 2020年07月19日
  97. * @return void
  98. */
  99. public function close()
  100. {
  101. if ($this->zipArchive) {
  102. $this->zipArchive->close();
  103. }
  104. }
  105. }