标签:
举一个例子:
根据键对关联数组进行降序排序:
<?php $age=array("Bill"=>"35","Steve"=>"37","Peter"=>"43"); krsort($age); foreach($age as $x=>$x_value) { echo "Key=" . $x . ", Value=" . $x_value; echo "<br>"; } ?>
结果:
Key=Steve, Value=37
Key=Peter, Value=43
Key=Bill, Value=35
标签:
原文地址:http://www.cnblogs.com/wanlibingfeng/p/5487657.html