Filip Halaxa
Filip Halaxa
CLI support?
Please let me know by reactions/voting or comments if a CLI version of JSON Machine would be useful to have. Thanks. `jm` command would take a JSON stream from `stdin`,...
Support to incrementally feed the parser via an explicit method call where the pull approach of foreach cannot be used. Useful for example for curl's `CURLOPT_WRITEFUNCTION` or when receiving json...
Enable iteration inside iteration to lazily iterate any structure. ```php foreach (RecursiveJsonMachine::fromFile('universe.json', '/results') as $gallaxy) { foreach($gallaxy as $solarSystem) { foreach($solarSystem as $solarSystemObject) { // process star, planet, asteroid ......
This is the first (at least publicly available 😁) working iteration of _jsonmachine_ php extension. Its primary goal for the time being is to accelerate the most called PHP code...