innmind/encoding
最新稳定版本:2.0.0
Composer 安装命令:
composer require innmind/encoding
包简介
关键字:
README 文档
README
This packages allows to encode and compress files and directories without the need for them to be written to the filesystem and never loaded entirely in memory.
Note Each file contained in a
tarfile can't exceed an 8Go size.
Installation
composer require innmind/encoding
Usage
use Innmind\Filesystem\{ Adapter\Filesystem, Name, }; use Innmind\TimeContinuum\Clock; use Innmind\Url\Path; use Innmind\Encoding\{ Gzip, Tar, }; $adapter = Filesystem::mount(Path::of('some/directory/')); $tar = $adapter ->get(Name::of('data')) ->map(Tar::encode(Clock::live())) ->map(Gzip::compress()) ->match( static fn($file) => $file, static fn() => null, );
Here $tar represents a .tar.gz file content containing all the files and directories from some/directory/data/, unless the data doesn't exist then it is null.
Documentation
Full documentation can be found at https://innmind.org/encoding/.
统计信息
- 总下载量: 6.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-10-29