本篇文章主要给大家介绍如何用php给关联数组进行排序。
对于php学习者来说,数组是一个非常重要的知识点,所谓数组就是能够在单独的变量名中存储一个或多个值。索引数组即带有数字索引的数组,关联数组即带有指定键的数组,多维数组即包含一个或多个数组的数组。
下面我们就通过简单的示例为大家介绍关联数组进行各种排序的方法。
代码示例如下:
<?phpecho "associative array : ascending order sort by value";$array2=array("sophia"=>"31","jacob"=>"41","william"=>"39","ramesh"=>"40"); asort($array2);foreach($array2 as $y=>$y_value){echo "age of ".$y." is : ".$y_value."";}echo "associative array : ascending order sort by key";$array3=array("sophia"=>"31","jacob"=>"41","william"=>"39","ramesh"=>"40"); ksort($array3);foreach($array3 as $y=>$y_value){echo "age of ".$y." is : ".$y_value."";}echo "associative array : descending order sorting by value";$age=array("sophia"=>"31","jacob"=>"41","william"=>"39","ramesh"=>"40");arsort($age);foreach($age as $y=>$y_value){echo "age of ".$y." is : ".$y_value."";}echo "associative array : descending order sorting by key";$array4=array("sophia"=>"31","jacob"=>"41","william"=>"39","ramesh"=>"40"); krsort($array4);foreach($array4 as $y=>$y_value){echo "age of ".$y." is : ".$y_value."";} ?>
输出结果如下:
1、按值升序
associative array : ascending order sort by value age of sophia is : 31 age of william is : 39 age of ramesh is : 40 age of jacob is : 41
2、按照键名对关联数组进行升序排序:
associative array : ascending order sort by key age of jacob is : 41 age of ramesh is : 40 age of sophia is : 31 age of william is : 39
3、按值降序
associative array : descending order sorting by value age of jacob is : 41 age of ramesh is : 40 age of william is : 39 age of sophia is : 31
4、按照键名对关联数组进行降序排序:
associative array : descending order sorting by key age of william is : 39 age of sophia is : 31 age of ramesh is : 40 age of jacob is : 41
相关函数介绍:
arsort() 函数对关联数组按照键值进行降序排序。
asort() 函数对关联数组按照键值进行升序排序。
krsort() 函数对关联数组按照键名进行降序排序。
ksort() 函数对关联数组按照键名进行升序排序。
本篇文章就是关于关联数组的排序方法介绍,希望对需要的朋友有所帮助!
以上就是php怎么给关联数组进行排序?(代码示例)的详细内容。
