最新消息: 新版网站上线了!!!

php利用统计访问量的简单实现方法

  1. $fp = fopen("counter.txt""r+"); 
  2.  
  3. while(!flock($fp, LOCK_EX)) {  // acquire an exclusive lock 
  4.     // waiting to lock the file 
  5.  
  6. $counter = intval(fread($fpfilesize("counter.txt"))); 
  7. $counter++; 
  8.  
  9. ftruncate($fp, 0);      // truncate file 
  10. fwrite($fp$counter);  // set your data 
  11. fflush($fp);            // flush output before releasing the lock 
  12. flock($fp, LOCK_UN);    // release the lock 
  13.  
  14. fclose($fp); 

 

转载请注明:谷谷点程序 » php利用统计访问量的简单实现方法