指定された配列の値に基づいて、配列値をカンマ区切り文字列に変換する方法は?
Array
(
[5] => Array
(
[id] => 5
[first_name] => Diyaa
[profile_pic] => profile/user5.png
)
[8] => Array
(
[id] => 8
[first_name] => Raj
[profile_pic] => profile/user8.png
)
[12] => Array
(
[id] => 12
[first_name] => Vanathi
[profile_pic] => profile/user12.png
)
[15] => Array
(
[id] => 15
[first_name] => Giri
[profile_pic] => profile/user15.png
)
[19] => Array
(
[id] => 19
[first_name] => Mahesh
[profile_pic] => profile/user19.png
)
)
下に指定されるように、私は
Array
(
[0] => 8
[1] => 15
[2] => 19
)
下記のように、私は=私は二番目の配列値に基づいて、第アレイからfirst_name
したい別の配列を有する配列を有します>,8,15および19。
Raj、Giri、Maheshがコンマ区切り文字列として出力されている必要があります。
これを取得する方法..?