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);
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); ?>
Usage:
<?php include("counter.php"); ?>
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
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!