php 访客计数器
时间:2007-02-17 来源:PHP爱好者
在上图中,访客计数器的流程如下
- 第一位用户浏览某页。
- 服务器程序从数据库或文件中读取该页被浏览次数。
- 将次数加一储存,并将它送回第一位用户。
- 第二位用户浏览某页。
- 服务器程序从数据库或文件中读取该页被浏览次数。
- 将次数再加一储存,并将它送回第二位用户。
PHP 在没有特殊的访客计数器函数,但是我们可以用 PHP 的强大功能自已写一个访客计数器函数。
以下的函数是访客计数器的原型,是由 David W. Bettis 所提供,并经过作者少许修改。 <html>
<head>
<title>访客计数器 原型</title>
</head>
<body>
<?php
/*
simple access counter for php3
(c)1998 David W. Bettis
[email protected]
medify by Wilson Peng
*/
$counterFile = "/tmp/counter.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 );
?>
</body>
</html>
Copyright ? 1998 David W. Bettis
php爱好者站 http://www.phpfans.net dreamweaver|flash|fireworks|photoshop.