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

php实现文本计数器

  1. <?php 
  2.  
  3.     if (file_exists('count_file.txt'))  
  4.     { 
  5.         $fil = fopen('count_file.txt', r); 
  6.         $dat = fread($filfilesize('count_file.txt'));  
  7.         echo $dat+1; 
  8.         fclose($fil); 
  9.         $fil = fopen('count_file.txt', w); 
  10.         fwrite($fil$dat+1); 
  11.     } 
  12.  
  13.     else 
  14.     { 
  15.         $fil = fopen('count_file.txt', w); 
  16.         fwrite($fil, 1); 
  17.         echo '1'
  18.         fclose($fil); 
  19.     } 
  20. ?> 

 

转载请注明:谷谷点程序 » php实现文本计数器