Data Type Php

  $customers= array(
        array('first' => 'Bill', 'last' => 'Jones',
              'age' => 24, 'state' => 'CA'),
        array('first' => 'Joyce', 'last' => 'Johnson',
              'age' => 21, 'state' => 'TX'),
      );
      
  $pet_breeds= array(
            'dogs' => array('P', 'T', 'D'),
            'birds' => array('P', 'C'),
            'fish' => array('G', 'T', 'C', 'A')
      );
      
  printf("

The name of the second customer is %s %s.

\n",
          $customers[1]['first'], $customers[1]['last']);
          
  printf("

%s and %s

", 
          $pet_breeds['dogs'][0], $pet_breeds['birds'][1]);
?>