gpt4 book ai didi

php - Laravel 列表 concat 不显示数据(全名)

转载 作者:可可西里 更新时间:2023-11-01 00:56:18 34 4
gpt4 key购买 nike

我在我的项目中使用 Laravel 5.3,我试图获取多个列并在 View 的下拉选择元素中显示数据。我正在做这样的查询:

$users = User::select(
DB::raw("CONCAT(first_name,' ', last_name) AS full_name, id")
)->lists('full_name', 'id')->toArray();

但这是我从中得到的数据:

array:6 [▼
14 => " "
15 => " "
16 => " "
17 => " "
19 => " "
22 => " "
]

full_name 的值为空,我该如何解决?

最佳答案

尽量避免使用 full_name 关键字,例如:

User::select('id', DB::raw("CONCAT(first_name, ' ', last_name) as full"))
->lists('full','id')
->toArray();

关于php - Laravel 列表 concat 不显示数据(全名),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42022294/

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