<?php $count=0; if(file_exists("count.txt")) //判断是否存在count.txt文件 { $count=file_get_contents("count.txt"); //取出文件count.txt中的内容 } $count++; echo "访问量:".$count; file_put_contents("count.txt",$count); //讲$count的值写入count.txt文件中?>
时间: 2024-11-07 20:40:25
<?php $count=0; if(file_exists("count.txt")) //判断是否存在count.txt文件 { $count=file_get_contents("count.txt"); //取出文件count.txt中的内容 } $count++; echo "访问量:".$count; file_put_contents("count.txt",$count); //讲$count的值写入count.txt文件中?>