id
我有一系列要排序的帖子- 但在此之前,我想找到likes
.
我使用 foreach 遍历数组。虽然为此执行两个 foreach 循环似乎很浪费 - 我不知道在尝试事先找到最高值时是否有替代方案?
Array
(
[0] => Array
(
[id] => 162
[like_count] => 2
etc.
)
[1] => Array
(
[id] => 165
[like_count] => 23
etc.
)
)
所以第二个帖子的点赞数最高,所以我需要 165 的 ID - 然后当我循环浏览时,我可以做类似的事情
foreach ($posts as $post){
if($most_liked_id == $post["id"]){
// this post is the most liked!
}
}
任何帮助将不胜感激 - 谢谢!