How to delete a line from the file with php?

后端 未结 9 1459
北荒
北荒 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:06

    Another approach is to read the file line by line until you find a match, then truncate the file to that point, and then append the rest of the lines.

提交回复
热议问题