【发布时间】:2017-03-07 04:21:41
【问题描述】:
这是我的查询
$RecipientList = Employees::select(DB::Raw('CONCAT(first_name," ",last_name) as employee_name'),'email')->pluck('employee_name','email');
这给了我想要的正确结果,
但是在我执行查询之后,我还有 1 个键 => 值对要推送到结果数组中。
如果我打印当前结果,它是这样的。
Illuminate\Support\Collection Object
(
[items:protected] => Array
(
[punit@*****.com] => Punit Gajjar
[milan@*****.com] => Milan Gajjar
[pritesh@*****.com] => Pritesh Modi
[pratik@*****.com] => Pratik Modi
[jyoti@*****.com] => Jyotiranjan J..
)
)
如果我尝试将我的 Key=>valye 对推送到此数组中,它将不起作用。
array_push(array("All"=>"All"),$RecipientList);
需要输出类似的东西
Illuminate\Support\Collection Object
(
[items:protected] => Array
(
[All] => All
[milan@*****.com] => Milan Gajjar
[milan@*****.com] => Milan Gajjar
[pritesh@*****.com] => Pritesh Modi
[pratik@*****.com] => Pratik Modi
[jyoti@*****.com] => Jyotiranjan J..
)
)
【问题讨论】:
标签: php arrays laravel array-push