第一步 laravel框架引入zip扩展包
composer require chumper/zipper
第二步 依赖注入
// config/app.php 文件
providers 加上
Chumper\Zipper\ZipperServiceProvider::class,
aliases 加上
'Zipper' => Chumper\Zipper\Zipper::class,
第三部 使用方法
//引入
use Chumper\Zipper\Zipper;
$zipper = new Zipper(); //new zip 类
$arr = glob(public_path('zip')); //需要打包目录或文件路径
$result = $zipper->make(public_path('test.zip'))->add($arr); // 添加需要打包路径,配置打包后路径以及文件名
$result->->close();
dd();
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。