stolentine/zip-partial-reader
最新稳定版本:v0.1.1
Composer 安装命令:
composer require stolentine/zip-partial-reader
包简介
Client for read one file from zip archive by curl
README 文档
README
Client for read one file from zip archive by curl.
use Stolentine\ZipPartialReader\ZipPartialReader; $zip = ZipPartialReader::openUrl('https://example.com/foo.zip'); $path = '/var/www/files/'; $pathName = '/var/www/files/fooBazBar.xml'; $filePathName = 'baz/bar.xml'; foreach ($zip->getFiles() as $file) { if (str_starts_with($file->name, $filePathName)) { $zip->extractToDir($file, new SplFileInfo($path)); // or $zip->extractToFile($file, new SplFileInfo($pathName)); } }
统计信息
- 总下载量: 4
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-12-08