如何在 php 中重新分配数组位置?
可能的重复:
如何重新索引数组的值在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)