按 created_at 排序 Eloquent 集合

2023-10-31php开发问题
0

本文介绍了按 created_at 排序 Eloquent 集合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个名为posts"的表,其中包含以下列:post_id int primary increments"、poster_id int"和status text",还有一个名为friends"的数组,其列:user_id int primary"和friend_ids"文本'.

I have a table named 'posts' with the columns: 'post_id int primary increments', 'poster_id int' and 'status text' as well as an array named friends with the columns: 'user_id int primary' and 'friend_ids text'.

我需要获取朋友文本列中的所有 ID,这很容易使用:

I need to grab all the IDs in the friends text column which is easy enough using:

$friends = explode(',', Friend::where('user_id', Sentry::getUser()->id)->first()->friend_ids);

文本列中的数据看起来像1、2、3"等.

Where the data in the text column would look like '1,2,3,' etc.

然后我创建一个 Eloquent Collection 对象,这也很容易通过以下方式完成:

Then I create an Eloquent Collection object which is also easily done via:

$posts = new IlluminateDatabaseEloquentCollection();

但问题是我不知道如何填充集合并按 Post 对象的created_at"列对其内容进行排序.

But the problem is I can't figure out how to populate the collection and sort its contents by the Post object's 'created_at' column.

这是我目前所拥有的:

foreach ($friends as $id) {
    $posts_ = Post::where('poster_id', $id)->getQuery()
        ->orderBy('created_at', 'desc')
        ->get();
    foreach($posts_ as $post) {
        $posts->add($post);
    }
}

我不知道这段代码是否适用于按created_at"列对整个帖子集合进行排序.我还需要能够轻松地对整个集合进行分页.

I can't figure out if this code would work or not for sorting the entire collection of posts by the 'created_at' column. I would also need to be able to paginate the entire collection easily.

推荐的收藏排序方式是什么?

What is the recommended way of sorting the collection?

推荐答案

如果要对 collection 进行排序,可以使用 sortBy 方法按给定键

If you want to sort a collection you can use the sortBy method by given key

$sorted = $posts->sortBy('created_at');

您还可以在 collection

$sorted = $posts->sortBy(function($post)
{
  return $post->created_at;
});

希望这会有所帮助.有关 collections 的更多信息,您可以阅读 docs

Hope this helps. For more information on collections you can read the docs

这篇关于按 created_at 排序 Eloquent 集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

PHP实现DeepL翻译API调用
DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以...
2025-08-20 php开发问题
168

PHP通过phpspreadsheet导入Excel日期数据处理方法
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的...
2024-10-23 php开发问题
287

mediatemple - 无法使用 codeigniter 发送电子邮件
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)...
2024-08-23 php开发问题
11

Laravel Gmail 配置错误
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)...
2024-08-23 php开发问题
16

将 PHPMailer 用于 SMTP 的问题
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)...
2024-08-23 php开发问题
4

关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)...
2024-08-23 php开发问题
17