gpt4 book ai didi

php - Laravel 5.2 - 更改从 Eloquent 获取的数据格式

转载 作者:可可西里 更新时间:2023-11-01 13:17:25 24 4
gpt4 key购买 nike

我有一个这样的模型-

$feature_project = FeatureProject::select('feature_id')
->where('project_id', $project->id)
->get();

如果我返回它,我会得到这样的输出-

[
{
"feature_id": 2
},
{
"feature_id": 4
},
{
"feature_id": 9
}
]

但是我想要这样的输出-

[2,4,9]

所以我需要转换输出。

但我找不到不使用 for-each 循环的方法(制作一个临时数组,使用 for-each 循环将所有元素从当前数组推送到该数组)。

但我认为在 Laravel 中有比这更聪明的方法来做到这一点。

我认为 Laravel Collection 就是用于此目的。

最佳答案

您可以在查询生成器上调用 pluck() 方法。

$feature_project = FeatureProject::select('feature_id')
->where('project_id', $project->id)
->pluck('feature_id'); // [2,4,9]

https://laravel.com/api/5.2/Illuminate/Database/Eloquent/Builder.html#method_lists

或者,您可以对原始数组使用 PHP 的 array_column() 函数。 http://php.net/manual/en/function.array-column.php

关于php - Laravel 5.2 - 更改从 Eloquent 获取的数据格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35265629/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com