muvon / kiss-varint
varint 读取和打包转换 int/uint
0.3.0
2021-11-23 07:01 UTC
Requires (Dev)
- phpunit/phpunit: ^10
This package is auto-updated.
Last update: 2024-09-12 21:54:19 UTC
README
KISS 实现的 int/uint varint 编码和解码
基本用法
use Muvon\KISS\VarInt; VarInt::packInt($value); // Pack value to a signed variable integer, little-endian VarInt::packUint($value); // Pack value to signed variable integer, little-endian VarInt::readInt($hex); // Unpack hex string as signed integer VarInt::readUint($hex); // Unpack hax string as unsigned integer