一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

php txt文件记数器 程序代码

时间:2008-09-28 编辑:简简单单 来源:一聚教程网

今天没事来用php+txt现实现一个网站计数器程序,代码我们主要用file_get_content 与fopen,fwrite读写就OK了.

 Class Sit_count{
   public $FileName = 'count.txt'; 
  function Count_add(){
   if(file_exists($this->FileName) ){
    $Temp = file_get_contents($this->FileName);
    $Total = $Temp+1;    
    echo $Total;
    $T = fopen($this->FileName,'w');
    fwrite($T,$Total);
    fclose($T);    
   }else{
    echo '! file_exists';
   }
   
  }
 }
  $tp = new Sit_count;
  $tp->Count_add();
?>

代码很简单吧,不过这晨count.txt文件要自己建一个哦,好了宣传一下站吧本站原创转载请注明www.111com.net/phper/php.html

热门栏目