fwrite writing from beginning without removing

后端 未结 8 1492
误落风尘
误落风尘 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:30

    use this code :

    $file = 'aaaa.txt';
    $oldContents = file_get_contents($file);
    $fr = fopen($file, 'w');
    $newmsg="text".$oldContents;
    fwrite($fr, $oldContents);
    fclose($fr);
    

提交回复
热议问题