How to delete a line from a file with php?
P粉489081732
2023-08-27 19:38:53
<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>
Read lines one by one and write all but the matching lines to another file. Then replace the original file.