/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Archive/Zip.php
92 строки
2 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Framework\Archive; /** * Zip compressed file archive. */ class Zip extends AbstractArchive implements ArchiveInterface { /** * @throws \Magento\Framework\Exception\LocalizedException */ public function __construct() { $type = 'Zip'; if (!class_exists('\ZipArchive')) { throw new \Magento\Framework\Exception\LocalizedException( new \Magento\Framework\Phrase('\'%1\' file extension is not supported', [$type]) ); } } /** * Pack file. * * @param string $source * @param string $destination * * @return string */ public function pack($source, $destination) { $zip = new \ZipArchive(); $zip->open($destination, \ZipArchive::CREATE); $zip->addFile($source); $zip->close(); return $destination; } /** * Unpack file. * * @param string $source * @param string $destination * * @return string */ public function unpack($source, $destination) { $zip = new \ZipArchive(); if ($zip->open($source) === true) { $baseName = basename($destination); $filename = $this->getFilenameFromZip($zip, $baseName); if ($filename) { $zip->extractTo(dirname($destination), $filename); } else { $destination = ''; } $zip->close(); } else { $destination = ''; } return $destination; } /** * Retrieve filename for import from zip archive. * * @param \ZipArchive $zip * @param string $baseName * * @return string */ private function getFilenameFromZip(\ZipArchive $zip, string $baseName): string { $index = 0; do { $zip->renameIndex($index, $baseName); $filename = $zip->getNameIndex($index); $index++; } while ($baseName !== $filename && $filename !== false); return $filename === $baseName ? $filename : ''; } }