array:5 [
0 => array:1 [
"location_id" => 1
]
1 => array:1 [
"location_id" => 4
]
2 => array:1 [
"location_id" => 6
]
3 => array:1 [
"location_id" => 7
]
4 => array:1 [
"location_id" => 8
]
]
将其转换为[“1”、“4”、“6”、“7”、“8”、]
如在不同查询中使用此[“1”,“4”,“6”,“7”,“8”,]数组
4条答案
按热度按时间z9smfwbn1#
您可以使用Laravel Collection
pluck
方法,从每个数组项中只返回您想要的属性,然后将结果数组扁平化为flatten
ee7vknir2#
欢迎来到斯塔克弗鲁德。
**您可以使用laravel辅助器数组扁平化方法:**从此处阅读更多信息:https://laravel.com/docs/9.x/helpers#method-array-flatten
结果:
kuarbcqp3#
虽然没有你想要的那么干净,但还是可以完成工作的。
dly7yett4#
你可以使用laravel helper数组pluck方法从这里阅读更多关于它的信息:https://laravel.com/docs/9.x/helpers#method-array-pluck