程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 三款php計數器代碼

三款php計數器代碼

編輯:關於PHP編程

文章收藏了三款php計數器代碼,他們三個都有一個同共點就是全部無需數據庫,而是利用了文本文件來實例網頁浏覽計數哦。

文章收藏了三款php教程計數器代碼,他們三個都有一個同共點就是全部無需數據庫教程,而是利用了文本文件來實例網頁浏覽計數哦。

<?php
//計數器
function countx($file="count.dat"){
if(file_exists($file)){
$fp=fopen($file,"r");
$numx=fgets($fp,10);
fclose($fp);
$numx++;
//以上四行代碼可以用一條表達式代替:$numx=file_get_contents($file)+1;
}
else{
$numx=1;}
file_put_contents($file,$numx);//當文件不存在時,這函數會自動創建文件,而且會自動把參數轉成字符串寫入。
echo $numx;
/*整個函數體可以用兩條表達式代替:file_exists($file)?file_put_contents($file,file_get_contents($file)+1):file_put_contents($file,"1");readfile($file);
*/
}
//函數調用
countx();
?>

代碼二

<?php
  
  
  $counterfile = "balong.txt";//存儲數值的文件名幾路徑
  
  function displaycounter($counterfile) {
   $fp = fopen($counterfile,"rw");
   $num = fgets($fp,5);
   $num += 1;
   print "您是第 "."$num"." 個看巴泷計數器的家伙";
   exec( "rm -rf $counterfile");
   exec( "echo $num > $counterfile");
  }
  
  if (!file_exists($counterfile)) {
   exec( "echo 0 > $counterfile");
  }
  
  displaycounter($counterfile);
  
  ?>


代碼三

<?php
  
  
  $counterfile = "www.bkjia.com.txt";//存儲數值的文件名幾路徑
  
  function displaycounter($counterfile) {
   $fp = fopen($counterfile,"rw");
   $num = fgets($fp,5);
   $num += 1;
   print "您是第 "."$num"." 個看巴泷計數器的家伙";
   exec( "rm -rf $counterfile");
   exec( "echo $num > $counterfile");
  }
  
  if (!file_exists($counterfile)) {
   exec( "echo 0 > $counterfile");
  }
  
  displaycounter($counterfile);
  
  ?>


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved