bu şekilde çıktılarsan içerik tipi "text/html" belirtilir. ancak tipi "application/json" olarak belirtirseniz json olarak çıktılanır.


header('Content-type: application/json');

$json = array();

$json['contacts'][] = array(
'id'=> "c200",
'name'=> "Ahmet Talut",
'email'=> "wpeklentim@gmail.com",
'address'=>"Adres",
'gender'=> "Erkek",
'phone' => array(
'mobile'=> "23424324",
'home'=> "43242342",
'office'=> "",
));

echo json_encode($json);