以下に示すような文字列があります。
SIM types:Azadi|Validity:2 Nights|Expirable:yes
|
それらを区切って行ごとに表示する次のコードがあります
$other = "SIM types:Azadi|Validity:2 Nights|Expirable:yes";
$others['items'][] = explode("|",$other);
for($i = 0; $i < count($others['items']); $i++){
echo $others['items'][$i];
}
ただし、for
ループは 1 回だけ繰り返され、最初の値のみが出力されます。これは私が今得ているものです:
SIMの種類:アザディ