私はこのような配列があります。配列アイテムの1種類から文字列を作成するには?
$results = $stmt->fetchAll(PDO::FETCH_ASSOC);
/*
Array
(
[0] => Array
(
[id] => 191
[type] => 3
[table_code] => 15
)
[1] => Array
(
[id] => 192
[type] => 3
[table_code] => 15
)
[2] => Array
(
[id] => 194
[type] => 3
[table_code] => 15
)
)
*/
をそして私はカンマ区切りですべてのIDの文字列を作成しようとしています。このようなもの:
echo $ExpectedOutput; // 193, 192, 194
どうすればいいですか?
foreach($results as $item) {
$ExpectedOutput = $item['id'];
}
しかし、常に,
は、その文字列の末尾にあります。ここでは
は、私がこれまで試したものです。
使用 'エコー破( ""、array_column($ arrが、 "ID"))' –