petrknap / xz-utils
XZ Utils (wrapper)
Fund package maintenance!
Other
Requires
- php: >=8.1
- petrknap/external-filter: ^1.0
- petrknap/shorts: ^2.0|^3.0
Requires (Dev)
- nunomaduro/phpinsights: ^2.11
- phpstan/phpstan: ^1.12
- phpunit/phpunit: ^10.5
- squizlabs/php_codesniffer: ^3.7
This package is auto-updated.
Last update: 2024-11-09 09:40:17 UTC
README
User-friendly wrapper for XZ Utils, providing simplified and streamlined access to powerful data compression and decompression tools. For ease of use, you can use the approach known from the compression extensions:
$encoded = xzencode(b'data') or throw new Exception(); $decoded = xzdecode($encoded) or throw new Exception(); printf('`%s` was decoded from encoded base64(`%s`)', $decoded, base64_encode($encoded));
Object-based approach
All functionality is available object-wise through the classes Lzma
and Xz
.
$xz = new PetrKnap\XzUtils\Xz(); $compressed = $xz->compress(b'data'); $decompressed = $xz->decompress($compressed); printf('`%s` was decompressed from compressed base64(`%s`)', $decompressed, base64_encode($compressed));
Filter-based approach
For more complex use cases, a filter-based approach is also possible.
use PetrKnap\ExternalFilter\Filter; use PetrKnap\XzUtils\FilterFactory; $file = fopen('README.md', 'r'); $xzFile = tmpfile(); # compress file to file FilterFactory::xz()->compress()->filter(input: $file, output: $xzFile); fclose($file); rewind($xzFile); # decompress file, filter headline and print it print FilterFactory::xz()->decompress()->pipe(new Filter('head', ['-n', '1']))->filter($xzFile); fclose($xzFile);
Run composer require petrknap/xz-utils
to install it.
You can support this project via donation.
The project is licensed under the terms of the LGPL-3.0-or-later
.