要是你如果想自己搞一些样式,不依赖站长之家之类的计数器工具的话,但是又嫌加一个数据库记录访问量过于麻烦,可以采用php + dat的方式
iddex.php
<html>
<head>
<meta charset="UTF-8">
<title>浏览计数器-steins-gate.com</title>
</head>
<body>
<?php
//数字输出网页计数器
$max_len = 9;
$CounterFile = "counter.dat";
if(!file_exists($CounterFile)){ //如果计数器文件不存在
$counter = 0;
$cf = fopen($CounterFile,"w"); //打开文件
fputs($cf,'0'); //初始化计数器
fclose($cf); //关闭文件
}
else{ //取回当前计数器的值
$cf = fopen($CounterFile,"r");
$counter = trim(fgets($cf,$max_len));
fclose($cf);
}
$counter++; //计数器加一
$cf = fopen($CounterFile,"w"); //写入新的数据
fputs($cf,$counter);
fclose($cf);
?>
<div id="dd" align="center">
<span>欢迎您!</span>
<span>您是本站的第
<?php
echo $counter; //输出计数器
?>
位访客!</span>
</div>
</body>
</html>
如果没有dat它会自己生成,已经算是粘贴上去就能用
要是你在自己的服务器上面的话,支持php和html后缀的文件,其实可以采用php的方式来进行统计网页的浏览量,也是可以达到效果的
利用已经有的网页计数器也是可以的,它会自己生成代码
如何统计网页的浏览量?_long_songs的博客-CSDN博客https://blog.csdn.net/long_songs/article/details/123359867
|