我真的是php新手。我决定根据我所看到的脚本进行计数。我已经对其进行了更改。我试图弄清楚如何重置计数器。

$userCount = file_get_contents("count.txt");

$userCount = trim($userCount);

$userCount = $userCount + 1;

$countReset = $userCount - $userCount;

$file = fopen("count.txt","w+");

fwrite($file,$userCount);

fclose($file);

print "The number of visitors is: $userCount";

if ($userCount < 20){
echo 'not yet';
}
else {
echo 'done!';
}

if ($userCount > 40){
fwrite($file,$countReset);
fclose($file);
}


我尝试从自身中减去计数器,以使其恢复为0。

$countReset = $userCount - $userCount;


但是,它似乎不起作用。计数器本身可以工作,但是我无法将其重置为0。

这就像我作为学习php的脚本一样给人的印象。另外,对格式感到抱歉,正在为此帖子编辑器苦苦挣扎。

脚本有帮助吗?

最佳答案

您已关闭文件,然后尝试再次写入该文件。在第二个fwrite之前,添加:

$file = fopen("count.txt","w+");

10-02 13:36