php統(tǒng)計網(wǎng)站訪問次數(shù)的一個簡單方法

admin 建站教程評論7401字?jǐn)?shù) 776閱讀模式
摘要

這里主要用到了session保存當(dāng)前訪問者,并將訪問次數(shù)寫入本地文件。

  1. <?    
  2.     @session_start();    
  3.     $counter = intval(file_get_contents("counter.dat"));  //創(chuàng)建一個dat數(shù)據(jù)文件  
  4.     if(!$_SESSION['#'])    
  5.     {    
  6.      $_SESSION['#'] = true;    
  7.      $counter++;  //刷新一次+1  
  8.      $fp = fopen("counter.dat","w");  //以寫入的方式,打開文件,并賦值給變量fp  
  9.      fwrite($fp$counter);   //將變量fp的值+1  
  10.      fclose($fp);    
  11.     }    
  12. ?>  

輸入代碼

  1. <?php echo "$counter";?>  

案列展示

  1. <?php  
  2.     @session_start();    
  3.     $counter = intval(file_get_contents("counter.dat"));    
  4.     if(!$_SESSION['#'])    
  5.     {    
  6.      $_SESSION['#'] = true;    
  7.      $counter++;    
  8.      $fp = fopen("counter.dat","w");    
  9.      fwrite($fp$counter);    
  10.      fclose($fp);    
  11.     }    
  12.  ?>  
  13. <p align="center">您是到訪的第<?php echo "$counter";?>位用戶</p>  

更多相關(guān)文章

如何實現(xiàn)Sublime Text3快速生成html代碼
php 寫內(nèi)容到文件,把日志寫到log文件
PHP $_GET 變量

版權(quán)聲明:文章圖片資源來源于網(wǎng)絡(luò),如有侵權(quán),請留言刪除!!!
廣告也精彩
admin
  • 本文由 發(fā)表于 2021年1月19日 11:28:53
  • 轉(zhuǎn)載請務(wù)必保留本文鏈接:http://yudch.cn/7079.html
匿名

發(fā)表評論

匿名網(wǎng)友 填寫信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: