fwrite writing from beginning without removing

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

    $file = 'aaaa.txt';
    $tmp = file_get_contents($file);
    $tmp = 'text'.$tmp;
    $tmp = file_put_contents($file, $tmp);
    echo ($tmp != false)? 'OK': '!OK';
    

提交回复
热议问题