PHP Return json
header('Content-type: application/json');
echo json_encode($array);
Mobile Star
header('Content-type: application/json');
echo json_encode($array);
$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data;
$data = json_decode($json);
//code igniter
$query="qry";
$query = $this->db->query($query);
$res=$query->result();
return json_encode($res);
$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);