Sorting Array Values in PHP(数组排序)


Posted in PHP onSeptember 15, 2011
$full_name = array(); 
$full_name["Roger"] = "Waters"; 
$full_name["Richard"] = "Wright"; 
$full_name["Nick"] = "Mason"; 
$full_name["David"] = "Gilmour";

To sort this array, you just use the assort( ) function. This involves nothing more complex than typing the word asort, followed by round brackets. In between the round brackets, type in the name of your Associative array:
asort($full_name);

The letter "a" tells PHP that the array is an Associative one. (If you don't have the "a" before "sort", your key names will turn in to numbers!). The "a" also tells PHP to sort by the Value, and NOT by the key. In our script above, the surnames will be sorted. If you want to sort using the Key, then you can use ksort() instead.

If you have a Scalar array (numbers as Keys), then you leave the "a" off. Like this:

$numbers = array( ); 
$numbers[]="2"; 
$numbers[]="8"; 
$numbers[]="10"; 
$numbers[]="6"; 
sort($numbers); 
print $numbers[0] ; 
print $numbers[1]; 
print $numbers[2] ; 
print $numbers[3];

The numbers are then sorted from lowest to highest. If you want to sort in reverse order then you need the following:

rsort( ) ? Sorts a Scalar array in reverse order
arsort( ) - Sorts the Values in an Associative array in reverse order
krsort( ) - Sorts the Keys in an Associative array in reverse order

In the next part, we look at how to get a random value from an array.

PHP 相关文章推荐
Php部分常见问题总结
Oct 09 PHP
PHP 创建标签云函数代码
May 26 PHP
用PHP即时捕捉PHP中的错误并发送email通知的实现代码
Jan 19 PHP
php代码中使用换行及(\n或\r\n和br)的应用
Feb 02 PHP
ThinkPHP行为扩展Behavior应用实例详解
Jul 22 PHP
PHP实现路由映射到指定控制器
Aug 13 PHP
PHP仿微信发红包领红包效果
Oct 30 PHP
PHP实现的激活用户注册验证邮箱功能示例
Jun 06 PHP
thinkphp查询,3.X 5.0方法(亲试可行)
Jun 17 PHP
php微信开发之图片回复功能
Jun 14 PHP
Yii2语言国际化的配置教程
Aug 19 PHP
tp5.1框架数据库子查询操作实例分析
May 26 PHP
PHP 图片上传代码
Sep 13 #PHP
php中json_encode中文编码问题分析
Sep 13 #PHP
PHP pathinfo()获得文件的路径、名称等信息说明
Sep 13 #PHP
PHP获取MAC地址的函数代码
Sep 11 #PHP
PHP内核介绍及扩展开发指南―基础知识
Sep 11 #PHP
PHP 命令行工具 shell_exec, exec, passthru, system详细使用介绍
Sep 11 #PHP
20个PHP常用类库小结
Sep 11 #PHP
You might like
PHP错误Cannot use object of type stdClass as array in错误的解决办法
2014/06/12 PHP
跟我学Laravel之安装Laravel
2014/10/15 PHP
php经典算法集锦
2015/11/14 PHP
PHP7扩展开发之hello word实现方法详解
2018/01/15 PHP
总结PHP代码规范、流程规范、git规范
2018/06/18 PHP
基于javascript滚动图片具体实现
2013/11/18 Javascript
js的alert样式如何更改如背景颜色
2014/01/22 Javascript
ES6新特性之函数的扩展实例详解
2017/04/01 Javascript
浅谈react.js中实现tab吸顶效果的问题
2017/09/06 Javascript
vue.js 实现评价五角星组件的实例代码
2018/08/13 Javascript
在小程序/mpvue中使用flyio发起网络请求的方法
2018/09/13 Javascript
vue+canvas实现移动端手写签名
2020/05/21 Javascript
JavaScript装箱及拆箱boxing及unBoxing用法解析
2020/06/15 Javascript
[45:40]Ti4 冒泡赛第二天NEWBEE vs NaVi 1
2014/07/15 DOTA
Python序列之list和tuple常用方法以及注意事项
2015/01/09 Python
Python调用系统底层API播放wav文件的方法
2017/08/11 Python
Python探索之实现一个简单的HTTP服务器
2017/10/28 Python
实例讲解python中的协程
2018/10/08 Python
学生信息管理系统Python面向对象版
2019/01/30 Python
详解Python字符串切片
2019/05/20 Python
浅谈keras中的目标函数和优化函数MSE用法
2020/06/10 Python
详解Python yaml模块
2020/09/23 Python
python 发送邮件的示例代码(Python2/3都可以直接使用)
2020/12/03 Python
中国跨境电子商务网站:NewFrog
2018/03/10 全球购物
官方授权图形T恤和服装:Fifth Sun
2019/06/12 全球购物
remote接口和home接口主要作用
2013/05/15 面试题
手机业务员岗位职责
2013/12/13 职场文书
物流管理专业自荐信
2014/06/23 职场文书
带刀到教室的检讨书
2014/10/04 职场文书
三人合伙协议书范本
2014/10/29 职场文书
2015元旦晚会主持词(开场白+结束语)
2014/12/14 职场文书
2015年纪检监察工作总结
2015/04/08 职场文书
务工证明怎么写
2015/06/18 职场文书
2016教师六五普法学习心得体会
2016/01/21 职场文书
iPhone13将有八大升级
2021/04/15 数码科技
uniapp开发打包多端应用完整方法指南
2022/12/24 Javascript