Array
(
[0] => stdClass Object
(
[features_id] => 2
[features_type] => TV
)
[1] => stdClass Object
(
[features_id] => 5
[features_type] => New balls
)
[2] => stdClass Object
(
[features_id] => 6
[features_type] => Basketball pitch
)
)
为获取我的数组的结果,我想显示以逗号分隔的此记录,如:
New balls,Basketball pitch.
通过使用foreach如何写不知道如何获得此类型的结果
答案 0 :(得分:3)
您可以在不使用foreach循环的情况下实现输出。请尝试以下代码。
$singlArray = array_column($multiDimArray, 'features_type') // this convert multiple dimension array to single array
$finalValue= implode(',',$singlArray);
答案 1 :(得分:0)
解决方案非常简单:
foreach($array as $item){
echo $item->features_type.',';
}