Skip to content

Instantly share code, notes, and snippets.

@roscius
Last active March 15, 2016 00:06
Show Gist options
  • Select an option

  • Save roscius/1b7de702db71a2ace2e6 to your computer and use it in GitHub Desktop.

Select an option

Save roscius/1b7de702db71a2ace2e6 to your computer and use it in GitHub Desktop.
File locking in PHP
<?php
$f = fopen('lock', 'w') or die ('Cannot create lock file');
if (flock($f, LOCK_EX | LOCK_NB)) {
// yay
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment