php使用flock阻塞写入文件和非阻塞写入文件的实例讲解
程序员文章站
2024-03-11 15:48:19
阻塞写入代码:(所有程序会等待上次程序执行结束才会执行,30秒会超时)
阻塞写入代码:(所有程序会等待上次程序执行结束才会执行,30秒会超时)
<?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!)
<?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阻塞写入文件和非阻塞写入文件的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。