Home  >  Article  >  Backend Development  >  PHP function to use files to save data to count the number of visitors to a web page_PHP tutorial

PHP function to use files to save data to count the number of visitors to a web page_PHP tutorial

WBOY
WBOYOriginal
2016-07-20 11:00:531069browse

PHP function that uses files to save data to count the number of visitors to a web page ​

$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 "You are the ".$du." visitor to this site!!!";
$xie = fopen($jishu,"w");
fwrite($xie,$du);
fclose($xie);
}
kaishi($jishu);


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445494.htmlTechArticlephp function that uses files to save data to count the number of visitors to a web page $jishu=jishu.txt; if(!file_exists($ jishu)) { $kjs = fopen($jishu,w); fwrite($kjs,0); fclose($kjs); } function 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