コードの何を変更する必要がありますか? エコーはたったの1文字m
これは私のコードです:
$string = 'mars@email.com,123,12,1|art@hur.com,321,32,2';
$output = array();
foreach (explode('|', $string) as $key => $person) {
$output[] = array(
'email' => $person[0],
'score' => $person[1],
'street' => $person[2],
'rank' => $person[3]
);
echo $output[0]['email'];
}
出力:m
出力は次のようになります。
$email1 = mars@email.com
$score1 = 123
$street1 = 12
$rank1 = 1
$email2 = art@hur.com
$score2 = 321
$street2 = 21
$rank2 = 2
このコードを実行して email1 と email2 を出力することは可能ですか? 私のコードは正しいですか、それとも何かを変更する必要がありますか?
ありがとうございました。