| |
首頁 | 中原大學資訊管理學系
中原大學資訊管理學系 版權所有 ©copyright 2009. | 指導單位:中原大學服務學習中心| 建議瀏覽解析度 1024 x 768| 建議使用IE瀏覽器
Email: fu.shan88@gmail.com
瀏覽人次:
// 設定訪客計數器的最大位數
$maxlength = 6;
// 檢查計數檔案是否存在
if (!file_exists("counter.txt")) {
$counter = 0;
$file = fopen("counter.txt","w"); // 開檔
// 將變數的內容寫入檔案
fputs($file, $counter);
fclose($file);// 關閉檔案
} else { // 開啟指定的檔案
$file = fopen('counter.txt','r+');
// 以位元組的方式讀取檔案內容
$counter = fread($file, filesize("counter.txt"));
fclose($file); // 關閉檔案
}
$counter +=1; // 增加計數
// 以寫入模式開啟檔案,並將新的人數寫入檔案
$file = fopen("counter.txt","w+");
fputs($file, $counter);
fclose($file);
// 顥示訪客計數, 在計數前填入0
$str = str_repeat("0", $maxlength-strlen($counter));
$str .= $counter;
// 顯示數字的圖片
echo "$counter";
?>
|
|
 |