Codice PHP:
function DumpArray ($theArray){
     
print_r ($theArray);
}
$a = array ("ciao"13);
DumpArray ($a);