I have an array of json objects like so:
[{"a":"b"},{"c":"d"},{"e":"f"}]
What is the best way to turn this into a php array?
json_decode will not handle the array part and returns NULL for this string.
|
I have an array of json objects like so:
What is the best way to turn this into a php array?
|
||||
|
|
json_decode() does so work. The second param turns the result in to an array:
|
|||||||
|
Read the manual - parameters for the |
|||
|
|