search
Homephp教程php手册Detailed introduction to PHP flock file lock_php basics

flock
(PHP 4, PHP 5)

flock — lightweight advisory file locking

Description
bool flock ( int $handle , int $operation [, int &$wouldblock ] )
PHP supports a lightweight method of locking all files in an advisory manner (that is, all accessing programs must lock in the same way, otherwise it will not work).

Note:

Under Windows flock() will be enforced.

The handle of the flock() operation must be an open file pointer. operation can be one of the following values:


To obtain a shared lock (reading program), set operation to LOCK_SH (set to 1 in versions prior to PHP 4.0.1).
To obtain an exclusive lock (writing program), set operation to LOCK_EX (set to 2 in versions prior to PHP 4.0.1).
To release a lock (whether shared or exclusive), set operation to LOCK_UN (set to 3 in versions prior to PHP 4.0.1).
If you do not want flock() to block when locked, add LOCK_NB to the operation (set to 4 in versions prior to PHP 4.0.1).

flock() allows the implementation of a simple read/write model that can be used on any platform (including most Unix derivatives and even Windows). The optional third parameter is set to TRUE if the lock would block (in case of EWOULDBLOCK error code). Lock operations can also be released by fclose() (also called automatically when the code completes execution).

Return TRUE on success, or FALSE on failure.


Example #1 flock() Example

Copy code The code is as follows:

$fp = fopen("/tmp/lock.txt", "w ");
if (flock($fp, LOCK_EX)) { // perform exclusive lock
fwrite($fp, "Write something here ");
flock($fp, LOCK_UN); // release lock} else {
echo "Couldn't lock the file !";
}
fclose($fp);
?>

Note:

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 (add "w to the fopen() function " or "w ").

Warning
flock() cannot be used with NFS and some other network file systems. Check your operating system's documentation for details.
In 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 before PHP 4.0.1)
3. To release the lock (whether shared or exclusive), set operation to LOCK_UN (in versions before PHP 4.0.1) Set to 3 in the version)
4. If you do not want flock() to block when locked, add LOCK_NB to the operation (set to 4 in previous versions of PHP 4.0.1)

See below Code:

a.php
Copy code The code is as follows:

$file = "temp.txt";
$fp = fopen($file, 'w');
if(flock($fp, LOCK_EX)){
fwrite( $fp, "abc");
sleep(10);
fwrite($fp, "123");
flock($fp, LOCK_UN);
}
fclose($ fp);
?>

b.php
Copy code The code is as follows:

$file = "temp.txt";
$fp = fopen($file, 'r');
echo fread($fp, 100);
fclose($fp);
?>

After running a.php, run b.php immediately and you can see the output:
abc
Wait for a.php to run and then run b.php and you can see the output:
abc
>123
Obviously, when a.php writes a file, the data is too large and takes a long time. At this time, b.php reads incomplete data. After modifying b.php,
modify b.php to :
Copy code The code is as follows:

$file = " temp.txt";
$fp = fopen($file, 'r');
if (flock($fp, LOCK_EX)) {
echo fread($fp, 100);
flock($fp, LOCK_UN);
} else{
echo "Lock file failed...";
}
fclose($fp);
?>

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
Read The data is complete, but the time is too long. He has to wait for the write lock to be released before making changes to b.php.
Modify b.php to:
Copy code The code is as follows:

php
$file = "temp.txt";
$fp = fopen($file, 'r');
if (flock($fp, LOCK_SH | LOCK_NB)) {
echo fread ($fp, 100);
flock ($fp, LOCK_UN);
} else{
echo “Lock file failed…”;
}
fclose ($fp);
?>

After running a.php, run b.php immediately and you can see the output:
Lock file failed...
Proof that the lock file failure status can be returned instead of It takes a long time to wait 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.
file_get_contents seems to be unable to 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.
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
Go语言中如何处理并发文件的文件系统文件锁和进程间文件共享问题?Go语言中如何处理并发文件的文件系统文件锁和进程间文件共享问题?Oct 09, 2023 pm 05:53 PM

Go语言中处理并发文件的文件系统文件锁和进程间文件共享问题引言:在Go语言中,我们常常需要处理并发访问文件的情况,包括文件系统文件锁和进程间文件共享。本文将介绍如何使用Go语言处理这些问题,并提供具体的代码示例。一、文件系统文件锁在多个并发程序同时访问同一个文件时,为了避免出现竞争条件和数据不一致的问题,我们可以使用文件系统文件锁来进行同步。Go语言提供了s

Linux 中的文件锁定命令:flock、fcntl、lockfile、flockfile 详细教程!Linux 中的文件锁定命令:flock、fcntl、lockfile、flockfile 详细教程!Feb 23, 2024 pm 09:01 PM

在Linux中,有几种常用的文件锁定命令,包括flock、fcntl、lockfile和flockfile。这些命令用于在多进程或多线程环境中对文件进行互斥访问。下面是这些命令的详细教程:flock命令:flock命令可以在Shell脚本中使用,用于对文件进行独占锁定。使用以下语法来锁定文件:flock[选项]文件名命令例如,要锁定名为file.txt的文件并执行命令,可以运行以下命令:flockfile.txtls-lflock命令会在执行命令期间锁定文件,并在命令完成后自动释放锁定。fcnt

PHP中的文件锁PHP中的文件锁May 23, 2023 am 08:15 AM

PHP是一门广泛使用的编程语言,被用于开发大量的Web应用程序,其中就包括对文件的处理。在这些Web应用程序中,有时需要避免并发访问同一个文件,以防止数据出现冲突。而文件锁就是一种解决并发访问的方案。文件锁是一种机制,用于防止多个进程或线程同时访问同一个文件。当一个进程锁住了一个文件,在它没有释放锁之前,其他进程是不能访问这个文件的。这种锁的使用能够确保文件

Golang实现文件锁的原理及应用Golang实现文件锁的原理及应用Feb 29, 2024 am 09:54 AM

Golang实现文件锁的原理及应用在操作系统中,文件锁是一种用于保护文件或资源不被多个进程同时访问或修改的机制。在Golang中,通过使用sync包提供的Mutex锁可以实现对内存中的数据结构进行加锁,但当涉及到多个进程对同一个文件进行读写操作时,则需要使用文件锁来确保数据的一致性和安全性。文件锁的类型在Golang中,可以使用os包提供的File结构体的F

Java 文件操作高级技巧:提升开发效率Java 文件操作高级技巧:提升开发效率Feb 27, 2024 pm 12:25 PM

1.高效文件读取使用BufferedReader/BufferedWriter提高读写效率:BufferedReader和BufferedWriter是高效的字符流,能够一次读取或写入一行文本,比直接使用InputStream或OutputStream更高效。BufferedReaderreader=newBufferedReader(newFileReader("file.txt"));BufferedWriterwriter=newBufferedWriter(newFileWriter("

文件锁在Golang编程中的重要性及使用方法文件锁在Golang编程中的重要性及使用方法Feb 28, 2024 pm 04:15 PM

文件锁在Golang编程中的重要性及使用方法在多线程的编程中,文件的读写操作是非常常见的。在并发程序中,如果多个goroutine同时对一个文件进行读写操作,很容易导致文件内容的混乱或者数据的丢失。为了避免这种情况,我们可以使用文件锁来保证文件操作的原子性和安全性。本文将介绍在Golang编程中文件锁的重要性以及具体的使用方法,同时提供一些代码示例。文件

使用Golang实现文件锁的最佳实践使用Golang实现文件锁的最佳实践Feb 28, 2024 pm 12:12 PM

使用Golang实现文件锁的最佳实践在开发中,我们经常会遇到需要对文件进行加锁的情况,以保证文件在多个goroutine或进程间的并发访问时能够正确操作。在Golang中,实现文件锁并不复杂,这篇文章将介绍如何使用Golang实现文件锁的最佳实践,包含具体的代码示例。文件锁的作用文件锁是一种在操作系统层面对文件进行加锁的机制,它可以帮助我们在并发访问文件时确

如何在Golang中利用文件锁确保数据安全如何在Golang中利用文件锁确保数据安全Feb 28, 2024 pm 01:12 PM

标题:如何在Golang中利用文件锁确保数据安全在编程过程中,保证数据安全是至关重要的一环。在Golang中,为了确保数据操作的原子性和线程安全,我们经常会使用文件锁来实现对共享资源的访问控制。文件锁在操作系统层面上保证了进程间的互斥访问,从而避免了数据竞态和资源冲突问题。本文将介绍如何在Golang中利用文件锁确保数据安全,并提供具体的代码示例。1.文件

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft