gpt4 book ai didi

php - array_unique 然后重新编号键

转载 作者:IT王子 更新时间:2023-10-28 23:55:16 24 4
gpt4 key购买 nike

Possible Duplicate:
Re-index numeric array keys

我有一个数组如下

Array
(
[0] => 15/11/2012 - 18/11/2012
[1] => 15/11/2012 - 18/11/2012
[2] => 15/11/2012 - 18/11/2012
[3] => 15/11/2012 - 18/11/2012
[4] => 19/12/2012 - 24/12/2012
[5] => 24/12/2012 - 01/01/2013
[6] => 24/12/2012 - 01/01/2013
[7] => 16/01/2013 - 01/02/2013
)

我正在使用 array_unique 删除给我的重复项

    Array
(
[0] => 15/11/2012 - 18/11/2012
[4] => 19/12/2012 - 24/12/2012
[5] => 24/12/2012 - 01/01/2013
[7] => 16/01/2013 - 01/02/2013
)

如何更改键以使其连续 - 如下所示

    Array
(
[0] => 15/11/2012 - 18/11/2012
[1] => 19/12/2012 - 24/12/2012
[2] => 24/12/2012 - 01/01/2013
[3] => 16/01/2013 - 01/02/2013
)

提前致谢

最佳答案

最简单的方法是通过循环或更好的 array_values 函数将它们放入一个新数组中。

$new_array = array_values($original_array)

More information

关于php - array_unique 然后重新编号键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13596128/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com