We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given the following JSON:
{ "errors": [ { "message": "Argument \u0022input\u0022 has an invalid value: ...." } ] }
(for some reason a mink driver is returning this instead of \"...)
\"
With json_decode() you will get:
json_decode()
{#4 +"errors": array:1 [ 0 => {#5 +"message": "Argument "input" has an invalid value: ...." } ] }
However with JsonParser you will get:
JsonParser
{#17 +"errors": array:1 [ 0 => {#16 +"message": "Argument "input" has an invalid value: ...." } ] }
Any idea of how this could be fixed?
The text was updated successfully, but these errors were encountered:
Looks like possibly a bug in https://github.com/Seldaek/jsonlint/blob/master/src/Seld/JsonLint/JsonParser.php#L471 - have a look?
Sorry, something went wrong.
Will try, thanks for the pointer
For my future self, might be of some help: zaach/jsonlint#54
Successfully merging a pull request may close this issue.
Given the following JSON:
(for some reason a mink driver is returning this instead of
\"
...)With
json_decode()
you will get:However with
JsonParser
you will get:Any idea of how this could be fixed?
The text was updated successfully, but these errors were encountered: