PHP 需要递归反转数组
我需要递归地反转一个具有许多级别子数组的巨大数组,并且我需要保留所有键(其中一些是 int 键,一些是字符串键),有人可以帮助我吗?也许有一个使用 array_reverse 的例子?另外,使用 array_reverse 是执行此操作的唯一/最佳方法吗?
谢谢 :)
I need to recursively reverse a HUGE array that has many levels of sub arrays, and I need to preserve all of the keys (which some are int keys, and some are string keys), can someone please help me? Perhaps an example using array_reverse somehow? Also, is using array_reverse the only/best method of doing this?
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
Try this:
递归:
输出:
Recursively:
output:
原位反转一个巨大的 php 数组(但不是递归):
Reversing a HUGE php array in situ (but not recursively):