Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Array ( [0] => Array ( [0] => 21 [SLOTID] => 21 ) [1] => Array ( [0] => 4 [SLOTID] => 4 ) )
この配列から次のような新しい文字列を作成したいと思います21,4。
21,4
私はPHPを初めて使用します。
$str = $arr[0][0] . ',' . $arr[1][0];
これを行うための標準的な方法は次のとおりです
implode( "、"、$ arr)