真空ラインを削除してみます。私のスクリプトは、ラインを検索し、彼女を削除しますが、それは真空ラインのままです.
hello
dude
world
私はこのスクリプトを実行しました:
$chaine="dude";
$file=$filename;
$texte = file_get_contents($file);
$texte = str_replace($chaine ,'',$texte);
$texte = preg_replace('/\s+/s', "\n", $texte);
try
{
if(!$fd = fopen($filename, "w")){
throw new Exception("Erreur ouverture du fichier");
}
else
{
fwrite($fd, $texte);
/*On ferme le fichier*/
fclose($fd);
}
}
catch (Exception $e) {
echo "Error de parametre fichier introuvable (File: ".$e->getFile().", line ".
$e->getLine()."): ".$e->getMessage();
echo "\n";
}
そして、私が持っています
hello
world
しかし、最初のものを削除すると、こんにちは、真空ラインがあります:
(vacuum line)
world
どうすれば問題を解決できますか?
トリム、str_replace を試してみましたが、うまくいきません...