0
$allProfiles = '';
foreach(array_merge($profile, $otherProfiles) as $all):
$allProfiles .= $all;
endforeach;
echo "Player all profiles: $allProfiles";
これは私のために印刷されますPlayer all profiles: NameNameNameNameName
、どのようにカンマで爆縮できますか?私が作るとき$allProfiles .= implode(",", $all)
;それから私は、事前にInvalid arguments passed in
おかげでジャストエコーに続いて$allProfiles .= $all;
$allProfiles[] = $all;
へPHP文字列implode:無効な引数が渡されました
を変更
EDIT
はimplode
を使用しました。..
のような配列を作ります'$ allPrfiles [] = $ all;'はループの中で、そして最後のimplode: 'echo"すべてのプレイヤーを再生します: ".implode( '、' 、$ allProfiles); '' $ allPrfiles'を空ではなく上の配列として設定します。 – Rasclatt
@Rasclattはい..今気づいた、ありがとう;) – EvaldasL