swoft/data-parser

PHP 的简单数据解析工具库

v1.0.1 2018-04-12 05:54 UTC

This package is auto-updated.

Last update: 2024-09-12 02:00:26 UTC


README

通用的 PHP 数据解析器

驱动

  • json(通过 json_encode
  • php(通过 serialize
  • igbinary(通过扩展 igbinary
  • msgpack(通过扩展 msgpack

安装

  • composer 命令
composer require swoft/data-parser

使用

$parser = new JsonParser();
// $parser = new PhpParser();
// $parser = new MsgPackParser();

// encode
$encoded = $parser->encode($data);

// decode
$decoded = $parser->encode($encoded);

单元测试

phpunit 

许可证

此组件是开源软件,遵循Apache 许可证