文章摘要:php如何给数组排序 php数组排序方法
在php中使用sort()函数对数组进行排序,具体方法如下: sort()函数作用: php中sort()函数 […]
在php中使用sort()函数对数组进行排序,具体方法如下:
sort()函数作用:
php中sort()函数的作用是用于对索引数组进行升序排序。
sort()函数语法:
sort(array,sortingtype);
参数:
array:指定数组;
sortingtype:规定排序的值。
sort()函数使用方法:
例:对数组中的元素按字母进行升序排序
$cars=array("Volvo","BMW","Toyota");
sort($cars);