阻塞写入代码:(所有程序会等待上次程序执行结束才会执行,30秒会超时)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
$file = fopen ( "test.txt" , "w+" );
$t1 = microtime(TRUE);
if ( flock ( $file ,LOCK_EX))
{
sleep(10);
fwrite( $file , "Write something" );
flock ( $file ,LOCK_UN);
echo "Ok locking file!" ;
}
else
{
echo "Error locking file!" ;
}
fclose( $file );
$t2 = microtime(TRUE);
echo sprintf( "%.6f" ,( $t2 - $t1 ));
|
非阻塞写入代码:(只要文件被占用,则显示Error locking file!)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
$file = fopen ( "test.txt" , "a+" );
$t1 = microtime(TRUE);
if ( flock ( $file ,LOCK_EX|LOCK_NB))
{
sleep(10);
fwrite( $file , "Write something" );
flock ( $file ,LOCK_UN);
echo "Ok locking file!" ;
}
else
{
echo "Error locking file!" ;
}
fclose( $file );
$t2 = microtime(TRUE);
echo sprintf( "%.6f" ,( $t2 - $t1 ));
|
以上这篇php使用flock阻塞写入文件和非阻塞写入文件的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。