Home > Backend Development > PHP Tutorial > 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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-20 11:00:53
Original
1163 people have browsed it

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 of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template