以下是一个简单的PHP实例,用于计算页面浏览量(PV)。这个实例将展示如何使用PHP代码来记录每次页面访问,并更新一个计数器。
```php

// 假设我们有一个名为count.txt的文件,用于存储PV计数
$filePath = 'count.txt';
// 尝试打开文件
if ($file = fopen($filePath, 'r+')) {
// 读取当前PV计数
$count = fread($file, filesize($filePath));
// 将计数器加1
$count++;
// 定位到文件开头
fseek($file, 0);
// 将更新后的计数器写回文件
fwrite($file, $count);
// 关闭文件
fclose($file);
} else {
// 如果文件不存在,创建文件并设置计数器为1
$file = fopen($filePath, 'w+');
if ($file) {
fwrite($file, 1);
fclose($file);
}
}
// 输出当前PV计数
echo "







