Detailed explanation of flock file lock in php

WBOY
Release: 2016-07-25 09:03:12
Original
1219 people have browsed it
  1. $fp = fopen("/tmp/lock.txt", "w+");
  2. if (flock($fp, LOCK_EX)) { // Perform exclusive lock
  3. fwrite ($fp, "Write something here ");
  4. flock($fp, LOCK_UN); // Release the lock
  5. } else {
  6. echo "Couldn't lock the file !";
  7. }
  8. fclose($fp);
  9. ?>
Copy code

Remarks: Since flock() requires a file pointer, you may have to use a special lock file to protect access to files intended to be opened in write mode (adding "w" or "w+" to the fopen() function).

Note: flock() cannot be used with NFS and some other network file systems. Check your operating system's documentation for details. On some operating systems flock() is implemented at the process level. When using a multi-threaded server API (such as ISAPI), it may not be possible to rely on flock() to protect the file, because the file can be processed by PHP scripts running in other parallel threads in the same server instance. flock() does not support older file systems such as FAT and its derivatives. Therefore, FALSE is always returned in this environment (especially for Windows 98 users).

Introduction to the usage of the file lock function flock function in php:

Syntax: bool flock ( int $handle , int $operation [, int &$wouldblock ] ) The handle of the flock() operation must be an open file pointer. operation can be one of the following values: 1. To obtain a shared lock (reader), set operation to LOCK_SH (set to 1 in versions prior to PHP 4.0.1) 2. To obtain an exclusive lock (writer), set operation to LOCK_EX (set to 2 in versions prior to PHP 4.0.1) 3. To release the lock (whether shared or exclusive), set operation to LOCK_UN (set to 3 in versions prior to PHP 4.0.1) 4. If you don’t want flock() to block when locked, add LOCK_NB to the operation (set to 4 in versions prior to PHP 4.0.1)

Look at the code below. File: a.php

  1. $file = "temp.txt";
  2. $fp = fopen($file, 'w');
  3. if(flock($fp, LOCK_EX)){
  4. fwrite($ fp, "abc");
  5. sleep (10);
  6. fwrite ($fp, "123");
  7. flock ($fp, LOCK_UN);
  8. }
  9. fclose ($fp);
  10. ?>
Copy the code

file: b.php

  1. $file = "temp.txt";
  2. $fp = fopen($file, 'r');
  3. echo fread($fp, 100);
  4. fclose($fp) ;
  5. ?>
Copy the code

After running a.php, run b.php immediately and you can see the output: abc After a.php has finished running, run b.php and you can see the output: abc 123 Obviously, when a.php writes the file, the data is too large and takes a long time. At this time, b.php reads the data incompletely and makes modifications to b.php. Modify b.php to:

  1. $file = "temp.txt";
  2. $fp = fopen($file, 'r');
  3. if(flock($fp, LOCK_EX)){
  4. echo fread( $fp, 100);
  5. flock($fp, LOCK_UN);
  6. } else{
  7. echo "Lock file failed...";
  8. }
  9. fclose($fp);
  10. ?>
Copy code

After running a.php, run b.php immediately. You can find that b.php will wait until a.php is completed (that is, after 10 seconds) before displaying: abc 123 The read data is complete, but the time is too long. He has to wait for the write lock to be released before making modifications to b.php. Modify b.php to:

  1. $file = "temp.txt";
  2. $fp = fopen($file, 'r');
  3. if(flock($fp, LOCK_SH | LOCK_NB)) {
  4. echo fread($fp, 100);
  5. flock($fp, LOCK_UN);
  6. } else{
  7. echo "Lock file failed...";
  8. }
  9. fclose($fp);
  10. ?>
Copy code

After running a.php, run b.php immediately and you can see the output: Lock file failed… It is proved that the lock file failure status can be returned instead of waiting for a long time as above. Script House editor’s conclusion: It is recommended to select relevant locks when caching files, otherwise the read data may be incomplete or the data may be written repeatedly. It seems that file_get_contents cannot select the lock. I don’t know what lock it uses by default. Anyway, the output obtained by not locking is the same as incomplete data.



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