add make_lockfile()

master
Andrew Dolgov 19 years ago
parent 6eafcac62f
commit fcb4c0c93b

@ -928,4 +928,14 @@
}
}
function make_lockfile($filename) {
$fp = fopen($filename, "w");
if (flock($fp, LOCK_EX | LOCK_NB)) {
return $fp;
} else {
return false;
}
}
?>

Loading…
Cancel
Save