这是我要完成的工作的一些背景知识。我有一个来自正在显示的 MySQL 查询的数组。我想根据一个因素对数组进行排序。该因子是根据文章发布的时间和收到的投票数内联计算的。像这样的东西:
// ... MySQL query here
$votes = $row['0']
$seconds = strtotime($record->news_time)+time();
$sum_total = pow($votes,2) / $seconds;
所以进来的数组看起来像这样:
Array (
[0] => stdClass Object (
[id] => 13
[news_title] => Article
[news_url] => http://website.com/article/14
[news_root_domain] => website.com
[news_category] => Business
[news_submitter] => 2
[news_time] => 2013-02-18 12:50:02
[news_points] => 2
)
[1] => stdClass Object (
[id] => 14
[news_title] => Title
[news_url] => http://www.website.com/article/2
[news_root_domain] => www.website.com
[news_category] => Technology
[news_submitter] => 1
[news_time] => 2012-10-02 10:03:22
[news_points] => 8
)
)
我想使用我上面提到的因素对上述数组进行排序。这个想法是首先在列表中显示评分最高的文章(使用计算因子),而不是数组进来的默认排序方法。似乎usort可能是我最好的选择,但让我知道你们的想法?