Download the PHP package salsify/json-streaming-parser without Composer
On this page you can find all versions of the php package salsify/json-streaming-parser. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download salsify/json-streaming-parser
More information about salsify/json-streaming-parser
Files in salsify/json-streaming-parser
Package json-streaming-parser
Short Description A streaming parser for JSON in PHP.
License MIT
Homepage https://github.com/salsify/jsonstreamingparser
Informations about the package json-streaming-parser
Streaming JSON parser for PHP
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
Usage
To use the JsonStreamingParser
you just have to implement the \JsonStreamingParser\Listener
interface.
You then pass your Listener
into the parser.
For example:
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
Projects using this library
License
MIT License (c) Salsify, Inc.
All versions of json-streaming-parser with dependencies
ext-ctype Version *
ext-mbstring Version *