$sequentialArray = array('apple', 'orange', 'tomato', 'carrot');
和
$assocArray = array('fruit1' => 'apple',
'fruit2' => 'orange',
'veg1' => 'tomato',
'veg2' => 'carrot');
如何区分这两种数组?
