探讨如何实现PHP数组排序
在在了解了usort自定义排序后,我们再来看看sort(),这个函数可谓是数组里的排序函数的鼻祖,大家肯定发现所有的PHP数组排序函数都会带有sort作为后缀。函数原型:bool sort ( array &array [, int sort_flags] )说明:基本上每个函数都会有个可选的参数,sort也不例外。这个可选参数指明的一种习惯。
可选类型有如下几种:
◆SORT_REGULAR – 正常比较单元(不改变类型) //按照ASCII值排序(B大于a)
◆SORT_NUMERIC – 单元被作为数字来比较 //对整数和浮点数常用这种参数
◆SORT_STRING – 单元被作为字符串来比较
◆SORT_LOCALE_STRING – 根据当前的区域(locale)设置来把单元当作字符串比较
还是看个例子,来自帮助手册:
<ol class="dp-xml"> <li class="alt"><span><strong><font color="#006699"><span class="tag"><!--SP--><span class="tag-name">php</span></span></font></strong><span> </span></span></li> <li> <span>$</span><span class="attribute"><font color="#ff0000">fruits</font></span><span> = </span><span class="attribute-value"><font color="#0000ff">array</font></span><span>("lemon", "orange", "banana", "apple"); </span> </li> <li class="alt"><span>sort($fruits); </span></li> <li> <span>foreach ($fruits as $</span><span class="attribute"><font color="#ff0000">key</font></span><span> =</span><span class="tag"><strong><font color="#006699">></font></strong></span><span> $val) { </span> </li> <li class="alt"><span>echo "fruits[".$key."] = " . $val . "n"; </span></li> <li><span>} </span></li> <li class="alt"> <span class="tag"><strong><font color="#006699">?></font></strong></span><span> </span> </li> </ol>
这个PHP数组排序的结果如下:
<ol class="dp-xml"> <li class="alt"><span><span>fruits[0] = apple </span></span></li> <li><span>fruits[1] = banana </span></li> <li class="alt"><span>fruits[2] = lemon </span></li> <li><span>fruits[3] = orange </span></li> </ol>
大家可以发现,原来是索引为0的lemon,再排序后就变成了apple。为了保持原来的键/值不变,你可以把sort()换成asort()即可。另外这两个函数是对键进行升序的排列(a在b的前面)。如果要使其进行降序,只要使用rsort()代替即可,相对应的arsort()是保持原来的键/值的相关联性的。
下面简要介绍下ksort()函数
这个函数主要是用来对关联数组进行而存在,它的“姐妹”函数uksort()是使用自定义函数而进行比较的。一句话:ksort()对于关联级数,对键进行排序并保留键名到数据的关联。数组的自然排序,到目前为止我们所知道的排序函数要么是用默认的方式,要么按照自定义的方式进行排序。那么natsort()则使用一种人性化的排序方式来对数组进行排序。在此就不说了,实例可以查看手册,如果你手头上没有PHP帮助手册,你可以在浏览本站在线帮助手册进行查看
<ol class="dp-xml"> <li class="alt"><span><span>shuffle()//函数的使用 </span></span></li> <li><span>Shuffle()//用来对一个数组进行随机排序,这个有点像抽签,其他的就不多说了。到用的时候再看吧。 </span></li> <li class="alt"><span>array_rand()//函数的使用 </span></li> <li><span>array_rand()//函数和shuffle()差不多,也是随机返回数组中的元素,如下调用: </span></li> <li class="alt"><span>array_rand ( array [, int num_req] ) //可选参数指出你要返回的个数。 </span></li> </ol>
PHP数组排序的方式就介绍到这,希望对大家有所帮助。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
