PHP Aligning Array Key Values

前端 未结 3 1098
春和景丽
春和景丽 2021-01-16 20:53

I\'ve Googled it for two days, and tried looking at the PHP manual, and I still can\'t remember that function that aligns the key values for PHP arrays.

All I\'m loo

3条回答
  •  轮回少年
    2021-01-16 21:23

    You can use array_merge:

    $array = array_merge($array);
    

    It will reindex values with numeric keys.

    Update: Using array_values as proposed in @LostInTheCode's answer is probably more descriptive.

提交回复
热议问题