$words = array(
'long'=>'psychotomimetic',
'fuel',
'google',
'small'=>'at',
'recall',
)
print_r($words);的输出格式应该是什么样的?是这样?
Array ( [long] => psychotomimetic [0] => fuel [1] => google [small] => at [2] => recall )有没有办法弄成下面这样?
Array 

[long] => psychotomimetic 
[0] => fuel 
[1] => google 
[small] => at 
[2] => recall 
)