brokencube/zipstream64
最新稳定版本:0.3.0.0
Composer 安装命令:
composer require brokencube/zipstream64
包简介
ZipStream is a library for dynamically streaming large dynamic zip files from PHP without writing to the disk at all on the server.
README 文档
README
The enhancements in this fork of https://github.com/maennchen/ZipStream-PHP have now been brought back into that project as of v1.0.0 - However, if you need PHP 5.6 / 7.0 (Which you shouldn't - those PHP versions are about to die!), this repo is still available.
ZipStream64
Streaming Zips with 64bit large file support
Please see the file LICENSE.md for licensing and warranty information (Standard MIT Licence).
Installation
Easiest installation is via Composer:
"require": { "brokencube/zipstream64": "0.1.*" }
Overview
A fast and simple streaming zip file downloader for PHP. Here's a simple example:
use brokencube\ZipStream\ZipStream; # Autoload the dependencies require 'vendor/autoload.php'; # create a new zipstream object $zip = new ZipStream('example.zip'); # create a file named 'hello.txt' $zip->addFile('hello.txt', 'This is the contents of hello.txt'); # add a file named 'image.jpg' from a local file 'path/to/image.jpg' $zip->addFileFromPath('some_image.jpg', 'path/to/image.jpg'); # add a file named 'goodbye.txt' from an open stream resource $fp = tmpfile(); fwrite($fp, 'The quick brown fox jumped over the lazy dog.'); $zip->addFileFromStream('goodbye.txt', $fp); fclose($fp); # add a file named 'farewell.txt' from a PSR7 stream (e.g. Guzzle / AWS) $amazonS3 = new Sdk()->createS3(); $file = $amazonS3->getObject(['Bucket' => 'bucket.name', 'Key' => 'path/to/farewell.txt']); $zip->addFileFromPsr7Stream('farewell.txt', $file['Body']); # finish the zip stream $zip->finish();
Requirements
- 64-bit PHP version 5.6 or newer.
Contributors
This project leans very heavily on previous work of the following projects:
95% of kudos for this project goes to them!
Some Caveats
64bit Zips don't work properly with macOS's default Zip library (i.e. used by the built-in unarchive). If you need >4GB Zips on mac, your users will need to use 3rd party software to unzip them. If your zip is going to be smaller, you can turn off 64bit support by calling:
$zip = new ZipStream('example.zip', [ZipStream::OPTION_USE_ZIP64 => false]);
brokencube/zipstream64 适用场景与选型建议
brokencube/zipstream64 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7.81k 次下载、GitHub Stars 达 6, 最近一次更新时间为 2016 年 01 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「stream」 「zip」 「64bit」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 brokencube/zipstream64 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 brokencube/zipstream64 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 brokencube/zipstream64 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Allow packages to be installed from a repository or tarball bundle that have multiple packages in the sub-folders
Object-Oriented API for PHP streams
Iteration tools for PHP
Safely namespaced guzzle psr7 for WP2Static
Laravel Package based on Twitter Snowflake ID Generator (64 bit ID).
Interface for a factory to create Psr\Http\Message\StreamInterface objects
统计信息
- 总下载量: 7.81k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-01-21