PHP文件锁定写入实例解析 |
本文标签:PHP,文件,锁定,写入 本文以实例讲述了PHP文件写入方法,以应对多线程写入,具体代码如下: function file_write($file_name, $text, $mode=a, $timeout=30){ $handle = fopen($file_name, $mode); while($timeout>0){ if ( flock($handle, LOCK_EX) ) { // 排它性的锁定 $timeout--; sleep(1); } } if ( $timeout > 0 ){ fwrite($handle, $text.\n); flock($handle, LOCK_UN); fclose($handle); //释放锁定操作 return true; } return false; } 其中flock(int $handle, int $operation)函数操作的 handle 必须是一个已经打开的文件指针 。 operation 可以是以下值之一: 要取得共享锁定(读取的程序),将 operation 设为 LOCK_SH(PHP 4.0.1 以前的版本设置为 1) 。 此外, fclose()用来释放锁定操作,在代码执行完毕时调用 。 |