PHP カウンタ
$counterFile = "balong.txt";//値を保存するファイル名とパス
function displayCounter($counterFile) {
$fp = fopen($counterFile,"rw"); $num = fgets($fp,5);
$num += 1;
print "あなたは "."$num"." という人です。"
exec( "rm -rf $counterFile ") ;
exec( "echo $num > $counterFile");
}
if (!file_exists($counterFile)) {
exec( "echo 0 > $counterFile");
}
displayCounter($counterFile);
? >