PHP 文件锁定写入_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > PHP 文件锁定写入

PHP 文件锁定写入

 2014/6/19 23:13:49  nomandia  程序员俱乐部  我要评论(0)
  • 摘要:PHP文件写入方法,应对多线程写入:functionfile_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)
  • 标签:PHP 文件
PHP文件写入方法,应对多线程写入:
class="php" name="code">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)。
  • 要取得独占锁定(写入的程序),将 operation 设为 LOCK_EX(PHP 4.0.1 以前的版本中设置为 2)。
  • 要释放锁定(无论共享或独占),将 operation 设为 LOCK_UN(PHP 4.0.1 以前的版本中设置为 3)。
  • 如果不希望 flock() 在锁定时堵塞,则给 operation 加上 LOCK_NB(PHP 4.0.1 以前的版本中设置为 4)。
发表评论
用户名: 匿名