Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 484 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 484 Bytes

Process Locker for PHP scripts

Test passing Latest Stable Version

Usage

$locker = new FileLocker('large-process', ['lockDir' => '/tmp/lock']);
if ($locker->isLocked()) {
    die('Already locked');
}

$locker->lock();
... some code ...
$locker->unlock();