w7 / rangine-zipstream
zipstream-php for swoole
Installs: 1 263
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Requires
This package is auto-updated.
Last update: 2024-11-20 20:17:24 UTC
README
基于 ZipStream-PHP 库,优化了对 Swoole 扩展的支持。
使用
配置 options 与原始库一样,只是需要指定 outputStream 为 Swoole Respons 对象。
\W7\ZipStream\ZipStream 对象继承自 \ZipStream\ZipStream 对象,只是重写了 Send 方法。 使用方法与原始库一致。
$options = new \ZipStream\Option\Archive();
$options->setSendHttpHeaders(true);
//指定 output 对象为 swoole response对象
$options->setOutputStream($this->response());
$zip = new \W7\ZipStream\ZipStream('example.zip', $options);
for ($i=0; $i<100000; $i++) {
$zip->addFile($i, 'test');
}
$zip->finish();