2017-08-24 14 views
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を使用しました。..

+1

のような配列を作ります'$ allPrfiles [] = $ all;'はループの中で、そして最後のimplode: 'echo"すべてのプレイヤーを再生します: ".implode( '、' 、$ allProfiles); '' $ allPrfiles'を空ではなく上の配列として設定します。 – Rasclatt

+0

@Rasclattはい..今気づいた、ありがとう;) – EvaldasL

答えて

2

あなただけ行うことができます。この

$allProfiles = array(); 
foreach(array_merge($profile, $otherProfiles) as $all): 
     $allProfiles[]= $all; 
endforeach; 

echo "Player all profiles: ".implode(",",$allProfiles); 
関連する問題