How to delete a line from a file with php?
P粉489081732
P粉489081732 2023-08-27 19:38:53
0
2
570
<p>I have a file called <code>$dir</code> and a string called <code>$line</code> which I know is the complete line of the file , but I don't know its line number and I want to delete it from the file, what should I do? </p> <p>Can I use awk? </p>
P粉489081732
P粉489081732

reply all(2)
P粉952365143

Read lines one by one and write all but the matching lines to another file. Then replace the original file.

P粉107772015
$contents = file_get_contents($dir);
$contents = str_replace($line, '', $contents);
file_put_contents($dir, $contents);
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template