PHP's Counter program

Source: Internet
Author: User
Tags count access
Program | Counter 1) Text counter
<?php
$countfile = "/count.txt"; Set up files to save data
if (!file_exists ($countfile)) {//To determine if a file exists
EXEC ("Echo 0 > $countfile");
}
$fp = fopen ($countfile, "RW");
$length =filesize ($countfile);
$num = Fgets ($fp, $length);
$num + 1;
EXEC ("Rm-rf $countfile");
EXEC ("echo $num > $countfile");
Print "Total Access amount:." $num "."  People "; Show number of visits
?>
2) Graphics counter
?
$countfile = "/count-num.txt"; Set up files to save data
if (!file_exists ($countfile))//Determine if the file exists
{EXEC ("echo 0 > $countfile");}
$fp = fopen ($countfile, "RW");
$length =filesize ($countfile);
$num = Fgets ($fp, $length);
$num + 1;
EXEC ("Rm-rf $countfile");
EXEC ("echo $num > $countfile");
$len _str = strlen ($num);
for ($i =0; $i < $len _str; $i + +) {
$each _num = substr ($num, $i, 1);
$out _str = $out _str. "}
Print "Total Access amount:." $out _str "."  People "; Show number of visits
?>


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.