Skip to content
Advertisement

how to extract key and value from json content?

what I have tried is this.

JavaScript

Can anyone help me in extracting keys and values like notificationType,bounceType,timestamp etc; It would be great help for me if anyone help me achieving this. Thank you.

Advertisement

Answer

json_decode decode a string converting it in php data structures: array or object. Check docs for json_decode.

You get object if you pass the second parameter as false:

JavaScript

And get associative array if pass true as the second parameter

JavaScript

Your problem is that you are handling the returned array as a collection of notifications. Note that $objs only contains a single notification object.

JavaScript

Modify your code like this

JavaScript

In this way you receive the json content as parameter and toArrays method only decode it and returns as array. You can iterate it with foreach, and can access to the indexes in the traditional way.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement