Home  >  Article  >  php教程  >  php用文件保存数据统计网页访问人数的函数

php用文件保存数据统计网页访问人数的函数

WBOY
WBOYOriginal
2016-06-13 11:17:081293browse

php用文件保存数据统计网页访问人数的函数  

$jishu="jishu.txt";
if(!file_exists($jishu))
{
 $kjs = fopen($jishu,"w");
 fwrite($kjs,0);
 fclose($kjs);
}
function kaishi($jishu)
{
 $js = fopen($jishu,"r");
 $du = fread($js,8);
 fclose($js);
 $du += 1;
 echo "你是本站的第".$du."位访客!!!";
 $xie = fopen($jishu,"w");
 fwrite($xie,$du);
 fclose($xie);
}
    kaishi($jishu);


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php chmod 函数 改变文件模式Next article:php feof 函数