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
Values that are set to null are not being removed by 'remove' operation. That is because of the check that goes into remove method
if (isset($json[$pointerPart]))
From PHP docs:
"isset() will return FALSE if testing a variable that has been set to NULL"
Easy fix:
if (isset($json[$pointerPart]) || is_null($json[$pointerPart]))
Too lazy to create a pull request, could you possibly fix this in the coming days? Cheers.
The text was updated successfully, but these errors were encountered:
Will look into it over the weekend.
Sorry, something went wrong.
0b317f3
No branches or pull requests
Values that are set to null are not being removed by 'remove' operation. That is because of the check that goes into remove method
From PHP docs:
Easy fix:
Too lazy to create a pull request, could you possibly fix this in the coming days? Cheers.
The text was updated successfully, but these errors were encountered: