fwrite writing from beginning without removing

后端 未结 8 1581
误落风尘
误落风尘 2021-01-01 05:08

I am using PHP and fwrite code, but I want every write position to start from the beginning of the file without erasing it\'s content. I am using this code but it is writing

8条回答
  •  我在风中等你
    2021-01-01 05:45

    Use fseek() to set your position in the file.

    $fr = fopen("aaaa.txt", "r+");
    fseek($fr, 0); // this line will set the position to the beginning of the file
    fwrite($fr, "text");
    fclose($fr);
    

提交回复
热议问题