下面这个简单的测试会生成奇怪的序列
<?php
$cellphones = array(
'iphone5' => 500,
'iphone6' => 700,
'iphone7' => 900
);
echo 'All cellphones : ' . print_r($cellphones);
?>
我期待看到的结果是: 所有手机:
Array ( [iphone5] => 500 [iphone6] => 700 [iphone7] => 900 )
但我得到了这个:
Array ( [iphone5] => 500 [iphone6] => 700 [iphone7] => 900 ) All cellphone : 1
回声的顺序有一些问题?我注意到“全部手机”的句子结尾后的值为1。
由于