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

WBOY
Release: 2016-07-20 11:00:53
Original
1083 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...
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!