Skip to content
Advertisement

I have a json file with a list of associative arrays and I need to get it into a php indexed array that I can pull values out of

I cannot figure out how to take a list of associative arrays from a json file and convert it into a php indexed array of associative arrays, and then access the values nested in the associative arrays

Here is the json file

JavaScript

And the php code I have been trying to use

JavaScript

Thanks in advance

Advertisement

Answer

array_keys is just going to give you something like Array ( [0] => 0 [1] => 1 ) in this code. So it is unnecessary to achieve what you want.

Simply remove that line and do:

JavaScript

The isset is just for good measure but doesn’t change how you access the array item.

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