在网站目录新建 counter.dat
文件并授权 www_data
修改权限。新建 PHP 文件代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <?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); ?>
|
HTML 需要位置插入代码:
1 2 3 4 5 6 7 8 9 10 11
| <?php include "counter.inc.php"; ?> <div id="dd" align=center> <span>欢迎您!</span> <span>您是本站的第 <?php echo $counter; ?> 位访客!</span> </div>
|