d9magai/phparchive

0.0.2 2014-08-19 08:48 UTC

This package is auto-updated.

Last update: 2024-08-29 03:08:08 UTC


README

ZipArchive类的包装器。

API 示例

use D9magai\Zip\TmpArchive;

// create TmpArchive
$tmpArchive = TmpArchive(new \ZipArchive(), __DIR__ . '/tmp');
// add file to tmpArchive
$tmpArchive->addFile($filePath);
// saving tmpArchive
$tmpArchive->save();
// get tmpArchive path
$zipPath = $tmpArchive->getPath();

##许可协议

此项目遵循MIT许可证