国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

File locking mechanism

File Locking Mechanism

The file locking mechanism generally has no effect at all when a single file is opened. This part of learning is a little abstract.

Don’t think about how to achieve it?

Why can’t I see the effect?
Answer: Because the computer operates so fast, basically on the millisecond level. So this experiment actually has no effect.

In this chapter, just understand the basic concepts of file locking and become familiar with the file locking function and locking mechanism.

The purpose of file lock:

If one person is writing a file, another person also writes to the file at the same time Import the file.
In this case, if a certain collision probability is encountered, I don’t know whose operation will prevail.
Therefore, we introduce the lock mechanism at this time.
If user A writes or reads this file, add the file to the share. I can read it, and so can others.
However, if this is the case. I use exclusive lock. This file belongs to me. Don't touch it unless I release the file lock.

Note: Regardless of whether the file lock is added, be careful to release it.

Let’s take a look at this function:

bool flock (resource $handle, int $operation)

Function: lightweight advisory file locking

We Let’s take a look at the lock type:


QQ截圖20161009111405.png


## Let’s add an exclusive to demo.txt lock for write operations.

<?php
 
$fp = fopen("demo.txt", "r+");
 
 // 進(jìn)行排它型鎖定
if (flock($fp, LOCK_EX)) {
 
    fwrite($fp, "文件這個時候被我獨占了喲\n");
 
   // 釋放鎖定
    flock($fp, LOCK_UN);   
} else {
    echo "鎖失敗,可能有人在操作,這個時候不能將文件上鎖";
}
 
fclose($fp);
 
?>

Explanation:

1. In the above example, in order to write the file, I added an exclusive lock to the file.

2. If my operation is completed and the writing is completed, the exclusive lock will be released.

3. If you are reading a file, you can add a shared lock according to the same processing idea.


Continuing Learning
||
<?php $fp = fopen("demo.txt", "r+"); // 進(jìn)行排它型鎖定 if (flock($fp, LOCK_EX)) { fwrite($fp, "文件這個時候被我獨占了喲\n"); // 釋放鎖定 flock($fp, LOCK_UN); } else { echo "鎖失敗,可能有人在操作,這個時候不能將文件上鎖"; } fclose($fp); ?>
submitReset Code