getting individual json from an object php code example
Example 1: php return json
header('Content-type: application/json');
echo json_encode($array);
Example 2: how to extract data from json in php
$json = '
{
"type": "donut",
"name": "Cake",
"toppings": [
{ "id": "5002", "type": "Glazed" },
{ "id": "5006", "type": "Chocolate with Sprinkles" },
{ "id": "5004", "type": "Maple" }
]
}';
$yummy = json_decode($json);
print_r($yummy);