Data Type Php

$dogs = array('A' => 'C', 'B' => 'D','X' => 'Z', 'Q' => 'T'); 
asort($dogs); 
printf("
%s
\n", var_export($dogs, TRUE)); 
?>