我有这个数组:
$array = [
0 => [
id => 100
],
1 => [
id => 76
]
]
我想从该数组中获取结果:[100,76]
。
我尝试使用:implode(',', array_values($array))
,但收到错误:Notice: Array to string conversion
。请帮我 !!!
答案 0 :(得分:2)
您收到错误,因为array_values将数组返回给您。深入
implode(',', array_column($array, 'id'))