jsonstreamingparser

A JSON streaming parser implementation in PHP.

  • 所有者: salsify/jsonstreamingparser
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Streaming JSON parser for PHP

Build Status
GitHub tag
Packagist
Coverage Status
Minimum PHP Version
License

This is a simple, streaming parser for processing large JSON documents.
Use it for parsing very large JSON documents to avoid loading the entire thing into memory, which is how just about
every other JSON parser for PHP works.

For more details, I've written up a longer explanation of the JSON streaming parser
that talks about pros and cons vs. the standard PHP JSON parser.

If you've ever used a SAX parser for XML (or even JSON) in another
language, that's what this is. Except for JSON in PHP.

This package is compliant with PSR-4, PSR-1, and
PSR-2.
If you notice compliance oversights, please send a patch via pull request.

Installation

To install JsonStreamingParser you can either clone this repository or you can use composer

composer require salsify/json-streaming-parser

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 \JsonStreamingParser\Parser($stream, $listener);
  $parser->parse();
  fclose($stream);
} catch (Exception $e) {
  fclose($stream);
  throw $e;
}

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

There is a complete example of this in example/example.php.

Running tests

make test

Projects using this library

JSON Collection Parser

JSON Objects

License

MIT License (c) Salsify, Inc.

主要指标

概览
名称与所有者salsify/jsonstreamingparser
主编程语言PHP
编程语言PHP (语言数: 2)
平台
许可证MIT License
所有者活动
创建于2013-02-08 15:13:19
推送于2023-07-11 12:20:03
最后一次提交2023-05-09 06:28:47
发布数18
最新版本名称v8.3.1 (发布于 )
第一版名称v1.0 (发布于 2013-12-23 11:51:37)
用户参与
星数759
关注者数59
派生数132
提交数160
已启用问题?
问题数53
打开的问题数8
拉请求数40
打开的拉请求数0
关闭的拉请求数7
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?