作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个网站使用数组,然后我有这个函数使用 asort
对这些数组进行排序.它看起来像这样:
function aasort (&$array, $key) {
$sorter=array();
$ret=array();
reset($array);
foreach ($array as $ii => $va) {
$sorter[$ii]=$va[$key];
}
asort($sorter);
foreach ($sorter as $ii => $va) {
$ret[$ii]=$array[$ii];
}
$array=$ret;
}
rsort
运气不好,我试过
array_reverse
也没有运气。不知道是不是我用错了?或者..至少我只需要算法来对它们进行降序排序。任何想法,建议或建议表示赞赏。谢谢!
最佳答案
试试 usort
如文档所述,具有定义的排序功能。
http://www.php.net/manual/en/function.usort.php
function sortSomething($a, $b){
if ($a < $b){
return -1;
}
else if ($a > $b){
return 1;
}
else{
return 0;
}
};
// Now sort the array using the comparison function
usort($array, 'sortSomething');
关于PHP:降序排序不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22692948/
我是一名优秀的程序员,十分优秀!