如何使用任意一个索引对 PHP 中的整个多维数组进行排序?
如何根据任意一个索引对php中的整个多维数组进行排序?
就像我有一个数组 $a=array('name'=>'sandep','dob'=>'06/08/1987','education'=>'undergrad');我根据索引将数据填充到该数组中。现在我想根据任何一个索引对整个数组数据进行排序。说“DOB”。可以用 PHP 来做吗?
EG:如果我有一千行。整个数组应该是基于 DOB 排序的数组。
How to sort an entire multi dimensional array in php based on any one of the index?
Like i have an array say $a=array('name'=>'sandep','dob'=>'06/08/1987','education'=>'undergrad'); i have data filled into this array based on the index. Now i want to sort the entire array data based on any one of the index. Say 'DOB'. Is it possible to do them in PHP?
EG: if i have thousand rows. The entire array should be a sorted one based on DOB.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用 usort 来使用您自己的排序功能。
Yes, you can use usort to use your own sort function.