File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ While this version doesn't have a better performance than **json_encode()** and
2020extension, but it has the next features:
2121
2222- [x] it doesn't require an extension. If you can't install ext-json, then you can use this version.
23- - [x] ** it works with JSON with unquoted keys** (for example JavaScript notation)
23+ - [x] ** it works with JSON with unquoted keys** (for example JavaScript notation), {aaa:2,bbb:"hello"}
24+ - [x] ** it could also work with unquoted values** {"aaa":2,"bbb": hello }
25+ - [x] ** it could also work with unwrapped content** "aaa":2,"bbb":"hello" instead of {aaa:2,bbb:"hello"}
2426- [x] It is a simple .php file with no dependency.
2527
2628## Usage
@@ -115,7 +117,7 @@ var_dump(Services_JSON::encode($obj)); // encode an object
115117
116118## Changelog
117119* 2.3.2
118- * Added flag to decode DECODE_NO_QUOTE
120+ * Added flag to decode() DECODE_NO_QUOTE
119121* 2.3.1
120122 * deleted unused code
121123 * fixed comments.
You can’t perform that action at this time.
0 commit comments