如何在 php 中重新分配数组位置?

发布于 2024-11-30 08:22:03 字数 456 浏览 3 评论 0原文

可能的重复:
如何重新索引数组的值在 PHP 中?

我正在使用几个 php 函数通过数组传递某些数据,通过这个过程,我得到 print_r 的数组,如下所示:

Array ([0] => 35 [4] => 36 [6] => 34)

如果我想将其重新排序回,我必须做什么下列? (我使用for语句,并且需要键再次从0开始连续排列)

Array ([0] => 35 [1] => 36 [2] => 34)

Possible Duplicate:
How to re-index the values of an array in PHP?

I'm using several php functions to carry certain data over through an array, and through the process I get arrays that print_r like the following:

Array ([0] => 35 [4] => 36 [6] => 34)

What do I have to do if I want to reorder it back to the following? (I use a for statement and need the keys to be in consecutive order starting from 0 again)

Array ([0] => 35 [1] => 36 [2] => 34)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眉目亦如画i 2024-12-07 08:22:03
$array = array_values($array);
$array = array_values($array);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文