Data Type Php

$my_array = array(); 
$pets = array('A', 'B', 'C', 'D'); 
$person = array('R', 'W', 24, 'CA'); 
$customer = array('first' => 'R', 'last' => 'W', 'age' => 24, 'state' => 'CA'); 
print "

'$pets[0]'.

\n"; 
print "

$person[2].

\n"; 
print "

{$customer['age']}.

\n"; 
?>