How to delete a line from the file with php?

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

    $contents = file_get_contents($dir);
    $contents = str_replace($line, '', $contents);
    file_put_contents($dir, $contents);
    

提交回复
热议问题