Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Introduction and usage of php flock function

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

This article gives you a detailed introduction to the flock function in php. Most of the examples can be applied to work, so I can share them for you as a reference. Let's follow the editor and have a look.

Bool flock (resource $handle, int $operation [, int & $wouldblock])

Flock () allows you to execute a simple read / write model that can be used on any platform (including most Unix derivatives and windows)

Before PHP 5.3.2, the lock was released by fclose () (called automatically at the end of the script), and now needs to be unlocked manually

Operation

1.LOCK_SH acquires a shared lock (read program)

2.LOCK_EX acquires exclusive lock (written program)

3.LOCK_UN releases locks (whether shared or exclusive)

4.LOCK_NB does not block when flock () locks

Example 1: Rana A uses exclusive locks to write files, B reads files, blocking

A.php

B.php

Execute a.php first, then b.php

An acquires the exclusive lock, b can only wait and wait for a to unlock the lock before executing b, blocking

Example 2, both of them use shared locks and do not block

A.php

B.php

Execute a.php first, then b.php

B does not need to wait for a to finish execution to output the contents of the file, non-blocking

In example 3, all of the files are written with exclusive locks, blocking

A.php

B.php

Execute a.php first, then b.php

B needs to wait for a to finish execution before writing data, blocking

Instance 4:LOCK_NB does not block or wait when it is locked

A.php

B.php

Execute a.php first, then b.php

B can not get the exclusive lock, do not need to wait for a to finish execution, but directly return to get no lock prompt, non-blocking

Summary:

Using the shared lock LOCK_SH, if it is a read, you do not need to wait, but if it is a write, you need to wait for the read to complete.

With the exclusive lock LOCK_EX, you have to wait for both writes / reads.

LOCK_UN, whether using shared / read preemptive locks, needs to be unlocked after use.

LOCK_NB, when locked, does not block, but prompts for locking.

After reading the above, have you mastered how to use the flock function? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report