コード例 #1
0
ファイル: noSQLite.php プロジェクト: macinnir/php-noSQLite
 public function writeLock()
 {
     if (!flock($this->dataHandle, LOCK_EX | LOCK_NB) || !index::lock($this->table)) {
         throw new Exception('Unable to obtain dat file lock.');
     }
     return true;
 }