- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP sort() 函数
实例
对数组 $cars 中的元素按字母进行升序排序:
<?php
$cars=array("Volvo","BMW","Toyota");
sort($cars);
?>
$cars=array("Volvo","BMW","Toyota");
sort($cars);
?>
定义和用法
sort() 函数对数值数组进行降序排序。
提示:请使用 rsort() 函数对数值数组进行降序排序。
语法
sort(array,sortingtype);
参数 | 描述 |
---|---|
array | 必需。规定要进行排序的数组。 |
sortingtype | 可选。规定如何排列数组的元素/项目。可能的值:
|
技术细节
返回值: | 如果成功则返回 TRUE,如果失败则返回 FALSE。 |
---|---|
PHP 版本: | 4+ |
更多实例
实例 1
对数组 $numbers 中的元素按数字进行升序排序:
<?php
$numbers=array(4,6,2,22,11);
sort($numbers);
?>
$numbers=array(4,6,2,22,11);
sort($numbers);
?>
完整的 PHP Array 参考手册
上一篇:PHP sizeof() 函数
下一篇:PHP uasort() 函数
关注微信小程序
扫描二维码
程序员编程王