本文實例講述了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文件操作總結》、《PHP運算與運算符用法總結》、《PHP網絡編程技巧總結》、《PHP基本語法入門教程》、《php操作office文檔技巧總結(包括word,excel,access,ppt)、《php日期與時間用法摘要》、《php物件導向程式設計入門教學》、《php字串(string)用法總結》、《php+mysql資料庫操作入門教學》及《php常見資料庫操作技巧總表》
希望本文所述對大家PHP程式設計有幫助。
以上就介紹了php使用文字統計訪問量的方法,包括了php,的方法方面的內容,希望對PHP教程有興趣的朋友有所幫助。