Home  >  Article  >  Backend Development  >  Detailed graphic and text explanation of how PHP uses text to count visits

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

墨辰丷
墨辰丷Original
2018-06-02 11:45:341312browse

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:

Usage:

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!

Statement:
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