Trying to print records from result received from JSON. Below is the format of JSON result
I am getting in $result = json_decode($result,true);
Array
(
[title] => API Directory
[description] => This directory contains links for Product Feed API and Delta Feed API of all categories with all the versions available
[apiGroups] => Array
(
[affiliate] => Array
(
[name] => affiliate
[apiListings] => Array
(
[food_nutrition] => Array
(
[availableVariants] => Array
(
[v0.1.0] => Array
(
[resourceName] => food_nutrition
[get] =>
[deltaGet] =>
[top] =>
[post] =>
[put] =>
[delete] =>
)
[v1.1.0] => Array
(
[resourceName] => food_nutrition
[get] =>
[deltaGet] =>
[top] =>
[post] =>
[put] =>
[delete] =>
)
)
[apiName] => food_nutrition
)
)
)
)
)
I wanted to print [resourceName]
and [get] from [v1.1.0] => Array
How can I get this done? Please advice.