Detailed graphic and text explanation of how PHP uses text to count visits

墨辰丷
Release: 2023-03-29 14:32:02
Original
1390 people have browsed it

This article mainly introduces the method of using text to count visits in PHP, involving techniques related to reading and writing PHP text files and numerical operations. Friends in need can refer to the following

Method 1:

$fp = fopen("counter.txt", "r+");
while(!flock($fp, LOCK_EX)) { // acquire an exclusive lock
  // waiting to lock the file
}
$counter = intval(fread($fp, filesize("counter.txt")));
$counter++;
ftruncate($fp, 0);   // truncate file
fwrite($fp, $counter); // set your data
fflush($fp);      // flush output before releasing the lock
flock($fp, LOCK_UN);  // release the lock
fclose($fp);
Copy after login

Method 2:

counter.php file:

<?php
/* counter */
//opens countlog.txt to read the number of hits
$datei = fopen("countlog.txt","r");
$count = fgets($datei,1000);
fclose($datei);
$count=$count + 1 ;
echo "$count" ;
echo " hits" ;
echo "\n" ;
// opens countlog.txt to change new hit number
$datei = fopen("countlog.txt","w");
fwrite($datei, $count);
fclose($datei);
?>
Copy after login

Usage:

<?php
include("counter.php");
?>
Copy after login

Summary: The above is the entire content of this article , I hope it can be helpful to everyone’s study.

Related recommendations:

How to implement asterisks in PHP to hide username, mobile phone and email address

PHP implementation will be more Compress the file into zip format and download it locally

phpDetailed example of the method of developing the program for WeChat public platform configuration interface

The above is the detailed content of Detailed graphic and text explanation of how PHP uses text to count visits. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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!