我有一个名为$Compare
的数组,我在php中使用了print_r()
函数:
Array ([2] => Broccoli, raw [3] => Candies, butterscotch [4] => Celery, raw [10] => Apricots, raw)
我希望按键的顺序正确:0,1,2,3不是2,3,4,10!
最后它应该是这样的:
Array ([0] => Broccoli, raw [1] => Candies, butterscotch [2] => Celery, raw [3] => Apricots, raw)