<?php
$counterFile = './counter.txt';
if (file_exists($counterFile)) { // 讀取目前計數器的值 $counter = file_get_contents($counterFile); // 增加計數器的值 $counter ;} else { // 初始計數器為1
## $counter = 1;
}
// 將新的計數器值寫入檔案
file_put_contents($counterFile, $counter);
#// 輸出目前的訪客量
echo '網站造訪量:' . $counter;
?>
我在首頁加入以上程式碼後,網站每刷新一次增加數目不是1而且3,例如第1次是1,再刷新就是4了,然後7、10、13、16……,有沒有大神知道問題出在哪裡?