masiuchi / inside-json
Codec for inside JSON
0.1.0
2019-12-20 19:42 UTC
Requires
- ext-dom: *
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ^4.8
- squizlabs/php_codesniffer: ^3.5
This package is auto-updated.
Last update: 2024-12-21 23:29:01 UTC
README
Codec for inside JSON
Usage
use InsideJson\Decoder; use InsideJson\Encoder; $decoder = new Decoder; $encoder = new Encoder; # JSON string has serialized JSON string its inside. $json = '{"a":"{\"b\":1,\"c\":2}","d":3}'; # decode JSON and inside JSON at once $obj = $decoder->decode($json); # access decoded object by using array-access or property $obj['a']['b'] = 4; $obj->a->c = 5; # access decode object by using foreach foreach ($obj as $key1 => $value1) { if (is_object($obj)) { echo "$key1:\n"; foreach ($value1 as $key2 => $value2) { echo "\t$key2: $value2\n"; } } else { echo "$key1: $value1\n"; } } # encode to JSON string keeping inside JSON $encoder->encode($obj); # '{"a":"{\"b\":4,\"c\":5}","d":3}' # encode to JSON string expanding inside JSON json_encode($obj->toArray()); # '{"a":{"b":4,"c":5},"d":3}'
License
MIT License https://opensource.org/licenses/mit-license.php