jeevi/cabinet
Composer 安装命令:
composer require jeevi/cabinet
包简介
Microsoft Cabinet file extraction wrapper. Uses either cabextract or expand
README 文档
README
Microsoft Cabinet file extraction wrapper. Uses either cabextract or expand
INSTALLATION
The recommended way to install cabarchive is through Composer:
composer require jeevi/cabinet
REQUIREMENTS
- PHP 5.2.1 or above
- expand.exe has been installed on windows
- cabextract has been installed on Linux, and it's on /usr/bin dir
QUICK START
Microsoft Cabinet file extraction wrapper. Uses either cabextract or expand, it's has this functions:
-
list files, lists a Cabinet has files
-
get files content , get a file cotent in Cabint
-
extract cab to assgin dir
#list files $cabFiles = __DIR__. '/test.cab'; try { $cab = new \Cab\CabArchive($cabFiles); $files = $cab->listFiles(); } catch (\Cab\CabArchiveException $e) { echo $e->getMessage(); } #get a file cotent try { $cab = new CabArchive($cabFiles); $fileconent= $cab->extract('360av_linux_server_baseline.ini'); } catch (\Cab\CabArchiveException $e) { echo $e->getMessage(); } #get multi files content it's ruturn array try { $cab = new CabArchive($cabFiles); $fileconent= $cab->extract('360av_linux_server_baseline.ini'); } catch (\Cab\CabArchiveException $e) { echo $e->getMessage(); } #extract to dir try { $dst = __DIR__ . '/tmp'; $cab = new CabArchive($cabFiles); $cab->extract(null, $dst); } catch (\Cab\CabArchiveException $e) { echo $e->getMessage(); }
统计信息
- 总下载量: 18
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2018-05-17