Author: Manuel Lemos
Viewers: 631
Last month viewers: 1
Categories: Notable Packages
JSON is nowadays used by many applications and APIs to exchange data in a format that can be supported by many languages.
Sometimes you need to do some processing to filter unwanted entries in JSON data structure. Usually you would use json_decode parse the data, traverse the parsed data and filter the unwanted information, and regenerate it with json_encode.
This class offers a simpler solution. It can take a JSON string and removed the unwanted entries from the JSON string directly.
This way you do not need to perform traversal of data and custom processing to remove the unwanted data.
Read this article to learn more details about how this notable PHP package works.
Sometimes you need to do some processing to filter unwanted entries in JSON data structure. Usually you would use json_decode parse the data, traverse the parsed data and filter the unwanted information, and regenerate it with json_encode.
This class offers a simpler solution. It can take a JSON string and removed the unwanted entries from the JSON string directly.
This way you do not need to perform traversal of data and custom processing to remove the unwanted data.
Read this article to learn more details about how this notable PHP package works.
The package PHP Ignore JSON Key is one of the few PHP packages that was considered notable recently because it does something that is worth paying attention.
The basic purpose is: Remove certain key values from JSON strings
Here follows in more detail what it does:
This class can remove certain key values from JSON strings.
It takes a JSON encoded string and parses it to remove object keys with names passed in an array.
The class returns another JSON string with the specified key removed.
Notable PHP packages can be often considered innovative. If this package is also innovative, it can be nominated to the PHP Innovation Award and the author may win prizes and recognition for sharing innovative packages.
If you also developed your own notable or innovative packages consider sharing them, so you can also earn more visibility for your package.
The basic purpose is: Remove certain key values from JSON strings
Here follows in more detail what it does:
This class can remove certain key values from JSON strings.
It takes a JSON encoded string and parses it to remove object keys with names passed in an array.
The class returns another JSON string with the specified key removed.
Notable PHP packages can be often considered innovative. If this package is also innovative, it can be nominated to the PHP Innovation Award and the author may win prizes and recognition for sharing innovative packages.
If you also developed your own notable or innovative packages consider sharing them, so you can also earn more visibility for your package.
You need to be a registered user or login to post a comment
Login Immediately with your account on:
Comments:
No comments were submitted yet.