php-jsonpointer icon indicating copy to clipboard operation
php-jsonpointer copied to clipboard

JSON Pointer implementation for PHP

Results 1 php-jsonpointer issues
Sort by recently updated
recently updated
newest added

The usage example in the README file says; `$all = $jsonPointer->get("");` should yield; `'{"foo":1,"bar":{"baz":2},"qux":[3,4,5],"m~n":8,"a/b":0,"e^f":3}'` but in fact it yields; `'{"foo":1,"bar":{"baz":2},"qux":[3,4,5],"m~n":8,"a\/b":0,"e^f":3}'` So `"a\/b"` instead of `"a/b"`.

Todo