Skip to content

Commit b1a90af

Browse files
10/11
1 parent 4324643 commit b1a90af

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ While this version doesn't have a better performance than **json_encode()** and
2020
extension, 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.

0 commit comments

Comments
 (0)