承接 andig/jsonstreamingparser 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

andig/jsonstreamingparser

最新稳定版本:v4.0.0

Composer 安装命令:

composer require andig/jsonstreamingparser

包简介

A streaming parser for JSON in PHP.

README 文档

README

Build Status

Not invented here

Code forked from https://github.com/salsify/jsonstreamingparser and some fixed added:

  • Removed file_position callback from listener (we did not need it and it gave significant performance boost)
  • PSR2

Features

  • Stream based - low memory footprint does not grow with file size
  • Similar to SAX parser

Known drawbacks

  • Performance is not as good as it should be (throughput - ~1MB per 9 secs, VirtualBox, Debian 7 on 4.3GHz CPU, single core)

Usage

To use the JsonStreamingParser you just have to implement the JsonStreamingParser\Listener interface. You then pass your Listener into the parser. For example:

$stream = fopen('doc.json', 'r');
$listener = new YourListener();
try {
  $parser = new Parser($stream, $listener);
  $parser->parse();
} catch (Exception $e) {
  fclose($stream);
  throw $e;
}

That's it! Your Listener will receive events from the streaming parser as it works.

License

MIT License

统计信息

  • 总下载量: 84
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 123
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-09-16