1) テキスト カウンタ
$countfile="/count.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" );
print "Total Visits:"."$num"."person-time" // 訪問数を表示
?>
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 "< img src="$each_num. gif">";
}
print "Total visits:"."$out_str"."persons"; //訪問数を表示します
?>