mlb0925 / zipconverter
This library was written to simplify and automate Zip files management using PHP ZipArchive.
dev-master
2023-08-17 12:51 UTC
Requires
- php: >=5.3.2
This package is auto-updated.
Last update: 2024-12-17 15:54:20 UTC
README
composer require mlb0925/zipconverter
使用方法
$zip = new \Mlb0925\zipConverter();
$zip->setRecursiveness(true); //default is false
$zip->addFolder(
array(
'./', //path of the current file
'F:\wamp2\www\yml', //Windows Path
'/var/www/html' //linux path
)
);
$zip->setZipPath('./files.zip'); //Set your Zip Path with your Zip File's Name
$result = $zip->createArchive();
echo "<pre>";var_dump($result);echo "</pre>";