Heim >Backend-Entwicklung >PHP-Tutorial >php网页数字计数器代码_PHP教程

php网页数字计数器代码_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:58:07800Durchsuche

php网页数字计数器代码 本款php计数器是一款用来统计网页的访问次数的简单的讲数器代码,利用txt文本文件与php fopen函数进行操作。

php教程网页数字计数器代码
本款php计数器是一款用来统计网页的访问次数的简单的讲数器代码,利用txt文本文件与php fopen函数进行操作。
*/
 

$log = 'log/count.txt';
 $count_img = 'img/counter';

 $fp = @fopen($log, "r+") or die($log.'数据文件不能打开!');
 $count = fgets($fp, 64);
 flock($fp, 2);
 $count = (int)$count + 1;
 rewind($fp);
 fputs($fp, $count);
 fclose($fp);
 if($conf_showcount == '1'){
  for ($i=0; $i    $num = substr($count, $i, 1);
   echo 'php网页数字计数器代码_PHP教程';
  }
 }

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632044.htmlTechArticlephp网页数字计数器代码本款php计数器是一款用来统计网页的访问次数的简单的讲数器代码,利用txt文本文件与php fopen函数进行操作。 php教程...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn