Skip to content

Instantly share code, notes, and snippets.

@albe
Created August 10, 2015 10:22
Show Gist options
  • Save albe/da6f80a5d727d4c67656 to your computer and use it in GitHub Desktop.
Save albe/da6f80a5d727d4c67656 to your computer and use it in GitHub Desktop.
$lockfile = fopen('lock', 'w+');
if (flock($lockfile, LOCK_EX | LOCK_NB)) {
unlink('lock');
echo 'locked...';
sleep(10);
flock($lockfile, LOCK_UN);
} else {
echo 'already locked...';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment