私はphpスクリプトに取り組んでいます。それは次のとおりです。
<?
$a='a b c d e';
$b=explode(" ",$a);
foreach ($b as $c) {
$filename = 'test.txt';
$fp = fopen($filename, "a+");
$write = fputs($fp, $c."/n");
fclose($fp);
}
?>
出力 (test.txt) は次のようになります。
a/nb/nc/nd/ne/n
しかし、私はこのようなテキストファイルを取得したい:
a
b
c
d
e
これを行う方法を教えてもらえますか?