SyncMutex::unlock
PHP function
Edit on GitHub ✎
(PECL sync >= 1.0.0)
Unlocks the mutex
Description
SyncMutex::unlock(bool $all = false): bool
Decreases the internal counter of a SyncMutex object. When the internal counter reaches zero, the actual lock on the object is released.
Parameters
allSpecifies whether or not to set the internal counter to zero and therefore release the lock.
Return Values
Success
Examples
SyncMutex::unlock() example
php
<?php
$mutex = new SyncMutex("UniqueName");
$mutex->lock();
/* ... */
$mutex->unlock();
?>See Also
SyncMutex::lock