$counter = implode("",file("counter.txt"));//開いたらすぐ閉じる $counter = $counter + 1; $file = fopen('counter.txt','w'); //まっさらにやり直しで書く'書き込みで開く' fwrite($file , $counter); //fileにcounterを書く fclose($file); //閉じる ?>