<?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……,有没有大神知道问题出在哪里?