程序员人生 网站导航

PHP计数器

栏目:php教程时间:2013-11-06 12:11:07
  1. <?php
  2.     $counterFile = "balong.txt";//存储数值的文件名几路径  
  3.       
  4.     function displayCounter($counterFile) {  
  5.      $fp = fopen($counterFile,"rw");  
  6.      $num = fgets($fp,5);  
  7.      $num += 1;  
  8.      print "您是第 "."$num"." 个看巴泷计数器的家伙";  
  9.      exec"rm -rf $counterFile");  
  10.      exec"echo $num > $counterFile");  
  11.     }  
  12.       
  13.     if (!file_exists($counterFile)) {  
  14.      exec"echo 0 > $counterFile");  
  15.     }  
  16.   
  17.     displayCounter($counterFile);  
  18.     ?> 
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐