
以下是一個PHP的簡單網頁瀏覽次數統計系統,請把counter.txt的檔案權限設置為666
<?php
@session_start();
$counterFile = "counter.txt";
//file_get_contents()讀取檔案內容,intval()把String變為Integer
$counter = intval(file_get_contents($counterFile));
//設置SESSION防止不停刷新頁面
if($_SESSION['counted']!=1){
//開啟檔案為寫入,並設置為0
$fp = @fopen($counterFile,...