anshu-krishna / neo4j-pack-stream
Neo4j Pack Stream 的实现
1.0
2022-09-10 09:48 UTC
Requires
- php: >=8.1
This package is auto-updated.
Last update: 2024-09-10 14:20:48 UTC
README
安装
composer require anshu-krishna/neo4j-pack-stream
要求
- PHP >= 8.1
示例
// For packing use Krishna\PackStream\Packer::pack(mixed $value): iterable; // Note: pack() is a generator. It yields binary strings. // For unpacking use Krishna\PackStream\Unpacker::unpack(I_ByteSource $source): mixed; // Source must implement I_ByteSource interface.