1)文字計數器
$countfile="/count.txt"; //設定儲存資料的檔案
if (!file_exists($countfile)){///設定保存資料的檔案
if (!file_exists($countfile)){///判斷檔案是否存在
exec( "echo 0 > $countfile");
}
$fp = fopen($countfile,"rw");
$length=filesize($countfile);
$num = fgets($fp, $length);
$num += 1;
exec( "rm -rf $countfile");
exec( "echo $num > $countfile");
print "訪問量總計:"."$num". "人次"; //顯示存取次數
?>
2)圖形計數器
$countfile="/count-num.txt"; //設定儲存資料的檔案
if (!file_exists($countfile)) //判斷檔案是否存在
{exec( "echo 0 > $countfile");}
$fp = fopen($countfile,"rw");
$length=filesize($countfile);
$num = fgets( $fp,$length);
$num += 1;
exec( "rm -rf $countfile");
exec( "echo $num > $countfile");
$len_str = strlen($num);
for($i=0;$i$each_num = substr($num,$i,1);
$out_str = $out_str . "";
}
print "訪問量總計:"."$out_str"."人次"; //顯示訪問次數