jigius / flock
Simple lock file management class.
1.0.3
2021-06-22 09:48 UTC
Requires
- php: >=5.3.0
Requires (Dev)
- mikey179/vfsstream: 1.2.*
- phpunit/phpunit: 3.7.*
This package is auto-updated.
Last update: 2024-10-22 17:04:30 UTC
README
Simple process lock management library.
Installation
Installation is best managed via Composer.
{ "require": { "jigius/flock": "1.0.*" } }
Or:
composer require jigius/flock=1.0.*
Usage
<?php $lock = new \Jigius\FLock\FLock("lock-name", "/path/to/lock/folder"); if ($lock->acquire()) { // Do work here } else { die ("Unable to acquire lock! Make sure no other process is running!"); } $lock->release();
Methods
- bool \Jigius\FLock\FLock::__construct( string $name [, string $path = null ] )
- object \Jigius\FLock\FLock::create( string $name [, string $path = null ] )
- bool \Jigius\FLock\FLock::acquire( [ bool $block = false ] )
- bool \Jigius\FLock\FLock::release()
- bool \Jigius\FLock\FLock::check()
- string \Jigius\FLock\FLock::getOwnerPid()