”温故知新” なことなど

コメントは、タイトル下の"without comments"を押下して記入ください

Archive for the ‘CORESERVER’ tag

カウント(インクリメント)

without comments

簡単にインクリメントを行う方法。
同じディレクトリにtxtファイルを配置しておいて
インクリメントするlog(数値)を足していく方法。

results.txtファイルを開くと左上に
数値のみ記載されている。


$count = ("results.txt");
$clicks = file($count);
$clicks[0]++;

$fp = fopen($count , "w");
fputs($fp , "$clicks[0]");
fclose($fp);

echo $clicks[0];

Written by nextschool

2月 20th, 2009 at 5:34 pm

Posted in 情報

Tagged with ,