royfee/ziparchiveex

There is no license information available for the latest version (1.1) of this package.

ZipArchive

Maintainers

Package info

github.com/royfee/ZipArchiveEx

pkg:composer/royfee/ziparchiveex

Statistics

Installs: 22

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

1.1 2026-01-27 10:16 UTC

This package is auto-updated.

Last update: 2026-02-28 01:26:45 UTC


README

1、用法

composer require royfee/ziparchiveex 进行安装

$zip = new \royfee\zip\ZipArchiveEx;
$zip->open('my.zip');
//打包Oss里存储的图片
$file = [
    'http://aliyunoss.com/ade7.jpg',
];
$zip->addRemoteFiles($file);
$zip->close();