最佳答案
我在循环一个特定的文章的作者发表的所有评论。
foreach($post->user->comments as $comment)
{
echo "<li>" . $comment->title . " (" . $comment->post->id . ")</li>";
}
这给了我
I love this post (3)
This is a comment (5)
This is the second Comment (3)
如何通过 post _ id 进行排序,使上面的列表按3、3、5进行排序