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)。