-
php 二维数组排序使用详解
昨天要排序数组的时候发现了,要按时间排序,但是php并没有内设这个函数,所以在网上找到了这个代码,第一个参数为数组,第二个是要排序的元素,第三个为排序方式,下面就是php 二维数组排序的代码:
- function arraySort($arr, $keys, $type = 'asc') {
- $keysvalue = $new_array = array();
- foreach ($arr as $k => $v){
- $keysvalue[$k] = $v[$keys];
- }
- $type == 'asc' ? asort($keysvalue) : arsort($keysvalue);
- reset($keysvalue);
- foreach ($keysvalue as $k => $v) {
- $new_array[$k] = $arr[$k];
- }
- return $new_array;
- }
- $arr[] = array("name"=>"1","time"=>1) ;
array_multisort(array1,sorting order, sorting type,array2,array3..)是对多个数组或多维数组进行排序的函数。
- <?php
- function my_sort($arrays,$sort_key,$sort_order=SORT_ASC,$sort_type=SORT_NUMERIC ){
- if(is_array($arrays)){
- foreach ($arrays as $array){
- if(is_array($array)){
- $key_arrays[] = $array[$sort_key];
- }else{
- return false;
- }
- }
- }else{
- return false;
- }
- array_multisort($key_arrays,$sort_order,$sort_type,$arrays);
- return $arrays;
- }
- $person = array(
- array('id'=>1,'name'=>'fj','weight'=>100,'height'=>180),
- array('id'=>2,'name'=>'tom','weight'=>53,'height'=>150),
- array('id'=>3,'name'=>'jerry','weight'=>120,'height'=>156),
- array('id'=>4,'name'=>'bill','weight'=>110,'height'=>190),
- array('id'=>5,'name'=>'linken','weight'=>80,'height'=>200),
- array('id'=>6,'name'=>'madana','weight'=>95,'height'=>110),
- array('id'=>7,'name'=>'jordan','weight'=>70,'height'=>170)
- );
- var_dump($person);
- $person = my_sort($person,'name',SORT_ASC,SORT_STRING);
- var_dump($person);
- $person = my_sort($person,'weight');
- var_dump($person);
- ?>
结果如下:
- array (size=7)
- 0 =>
- array (size=4)
- 'id' => int 1
- 'name' => string 'fj' (length=2)
- 'weight' => int 100
- 'height' => int 180
- 1 =>
- array (size=4)
- 'id' => int 2
- 'name' => string 'tom' (length=3)
- 'weight' => int 53
- 'height' => int 150
- 2 =>
- array (size=4)
- 'id' => int 3
- 'name' => string 'jerry' (length=5)
- 'weight' => int 120
- 'height' => int 156
- 3 =>
- array (size=4)
- 'id' => int 4
- 'name' => string 'bill' (length=4)
- 'weight' => int 110
- 'height' => int 190
- 4 =>
- array (size=4)
- 'id' => int 5
- 'name' => string 'linken' (length=6)
- 'weight' => int 80
- 'height' => int 200
- 5 =>
- array (size=4)
- 'id' => int 6
- 'name' => string 'madana' (length=6)
- 'weight' => int 95
- 'height' => int 110
- 6 =>
- array (size=4)
- 'id' => int 7
- 'name' => string 'jordan' (length=6)
- 'weight' => int 70
- 'height' => int 170
- array (size=7)
- 0 =>
- array (size=4)
- 'id' => int 4
- 'name' => string 'bill' (length=4)
- 'weight' => int 110
- 'height' => int 190
- 1 =>
- array (size=4)
- 'id' => int 1
- 'name' => string 'fj' (length=2)
- 'weight' => int 100
- 'height' => int 180
- 2 =>
- array (size=4)
- 'id' => int 3
- 'name' => string 'jerry' (length=5)
- 'weight' => int 120
- 'height' => int 156
- 3 =>
- array (size=4)
- 'id' => int 7
- 'name' => string 'jordan' (length=6)
- 'weight' => int 70
- 'height' => int 170
- 4 =>
- array (size=4)
- 'id' => int 5
- 'name' => string 'linken' (length=6)
- 'weight' => int 80
- 'height' => int 200
- 5 =>
- array (size=4)
- 'id' => int 6
- 'name' => string 'madana' (length=6)
- 'weight' => int 95
- 'height' => int 110
- 6 =>
- array (size=4)
- 'id' => int 2
- 'name' => string 'tom' (length=3)
- 'weight' => int 53
- 'height' => int 150
- array (size=7)
- 0 =>
- array (size=4)
- 'id' => int 2
- 'name' => string 'tom' (length=3)
- 'weight' => int 53
- 'height' => int 150
- 1 =>
- array (size=4)
- 'id' => int 7
- 'name' => string 'jordan' (length=6)
- 'weight' => int 70
- 'height' => int 170
- 2 =>
- array (size=4)
- 'id' => int 5
- 'name' => string 'linken' (length=6)
- 'weight' => int 80
- 'height' => int 200
- 3 =>
- array (size=4)
- 'id' => int 6
- 'name' => string 'madana' (length=6)
- 'weight' => int 95
- 'height' => int 110
- 4 =>
- array (size=4)
- 'id' => int 1
- 'name' => string 'fj' (length=2)
- 'weight' => int 100
- 'height' => int 180
- 5 =>
- array (size=4)
- 'id' => int 4
- 'name' => string 'bill' (length=4)
- 'weight' => int 110
- 'height' => int 190
- 6 =>
- array (size=4)
- 'id' => int 3
- 'name' => string 'jerry' (length=5)
- 'weight' => int 120
- 'height' => int 156
这里的重点就是,先把要排序的key存到一个一维数组中,然后就可以使用array_multisort()这个函数,将数组按照key进行排序了,当然,这里的排序你完全可以不适用array_multisort()这个函数,仅仅通过foreach遍历也能达到这个效果,但是既然php开发者给我们提供了更好的办法,我们就可以省去不必要的麻烦了。
出处:http://www.phpfensi.com/php/20180531/10725.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式