php – usort以相反的顺序返回数组

前端之家收集整理的这篇文章主要介绍了php – usort以相反的顺序返回数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个usort函数正在从我想要的方向返回数组.它返回一个数组(“1”,“2”,“3”).如何让它返回(“3”,“1”)?
usort($myArray,function($a,$b) {
    return $a["comments"] - $b["comments"];
});
只是反转参数?
usort($myArray,$b) {
    return $b["comments"] - $a["comments"];
});
原文链接:https://www.f2er.com/php/138807.html

猜你在找的PHP相关文章