关联数组赋值:
$arr['apple']='苹果';
array('apple'=>'苹果');
索引数组赋值:
$arr[0]='苹果';$arr=array('0'=>'香蕉');$arr=array('苹果');