この記事の例では、php がテキストを使用して訪問数をカウントする方法を説明します。参考のために全員と共有します。詳細は次のとおりです。
方法 1:
$fp = fopen("counter.txt", "r+"); while(!flock($fp, lock_ex)) { // acquire an exclusive lock // waiting to lock the file } $counter = intval(fread($fp, filesize("counter.txt"))); $counter++; ftruncate($fp, 0); // truncate file fwrite($fp, $counter); // set your data fflush($fp); // flush output before releasing the lock flock($fp, lock_un); // release the lock fclose($fp);
方法 2:
counter.php ファイル:
<?php /* counter */ //opens countlog.txt to read the number of hits $datei = fopen("countlog.txt","r"); $count = fgets($datei,1000); fclose($datei); $count=$count + 1 ; echo "$count" ; echo " hits" ; echo "\n" ; // opens countlog.txt to change new hit number $datei = fopen("countlog.txt","w"); fwrite($datei, $count); fclose($datei); ?>
使用法:
<?php include("counter.php"); ?>