私は非常にphpに新しいです、私は検索し、テキストをcsvに変換してファイルに書き込むためにこのスクリプトをまとめる。ファイルに出力する
$File = "/var/apache2/htdocs/loginS/host.txt";
$Handle = fopen($File,"r");
$Content = fread ($Handle,filesize ($File));
fclose($File);
fclose($Handle);
$Content = explode("\t", $Content);
foreach($Content as $Value) {
//echo $Value."|"; // till this line working
fwrite($save, $Value);
fclose($save);
}
問題はファイルに書き込もうとするときです。私は1行しか持っていません。私の誤りは何ですか?
ありがとうございます! – user1212143