1 <?php 2 header('Content-type: text/json'); 3 4 $fruits = array ( 5 "fruits" => array("a" => "orange", "b" => "banana", "c" => "apple"), 6 "numbers" => array(1, 2, 3, 4, 5, 6), 7 "holes" => array("first", 5 => "second", "third") 8 ); 9 echo json_encode($fruits); 10 ?>