How to delete a line from the file with php?

后端 未结 9 1468
北荒
北荒 2020-11-27 19:36

I have a file named $dir and a string named $line, I know that this string is a complete line of that file but I don\'t know its line number and I

9条回答
  •  一整个雨季
    2020-11-27 20:20

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

提交回复
热议问题