toolkit / data-parser
PHP的一些数据解析工具库
v1.0.2
2018-04-30 07:02 UTC
Requires
- php: >7.0.0
Suggests
- inhere/console: a lightweight php console application library.
- inhere/php-validate: Very lightweight data validate tool
- inhere/simple-print-tool: Very lightweight data printing tools
This package is auto-updated.
Last update: 2024-08-25 07:31:04 UTC
README
PHP简单数据解析器
驱动
- json(通过
json_encode
) - php(通过
serialize
) - swoole(通过扩展
swoole_serialize
) - msgpack(通过扩展
msgpack
)
安装
- composer命令
composer require toolkit/data-parser
用法
$parser = new SwooleParser(); // $parser = new JsonParser(); // $parser = new PhpParser(); // $parser = new MsgPackParser(); // encode $encoded = $parser->encode($data); // decode $decoded = $parser->encode($encoded);
单元测试
phpunit
许可证
MIT