利用文本文件TXT来实现网站浏览计数器的功能,计数不用存储在数据库中,直接存储在记事本中。
代码如下:
<?php $counterfile = "count.txt";//存储计数器的文件名和路径 function displaycounter($counterfile) { $fp = fopen($counterfile,"rw"); $num = fgets($fp,5); $num += 1; print "您是第 "."$num"." 个访问本站的用户!"; exec( "rm -rf $counterfile"); exec( "echo $num > $counterfile"); } if (!file_exists($counterfile)) { exec( "echo 0 > $counterfile"); } displaycounter($counterfile); ?>
声明:如需转载,请注明来源于www.webym.net并保留原文链接:http://www.webym.net/jiaocheng/942.html