array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'syncsemaphore.unlock.php', 1 => 'SyncSemaphore::unlock', 2 => 'Increases the count of the semaphore', ), 'up' => array ( 0 => 'class.syncsemaphore.php', 1 => 'SyncSemaphore', ), 'prev' => array ( 0 => 'syncsemaphore.lock.php', 1 => 'SyncSemaphore::lock', ), 'next' => array ( 0 => 'class.syncevent.php', 1 => 'SyncEvent', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/sync/syncsemaphore/unlock.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PECL sync >= 1.0.0)
SyncSemaphore::unlock — Increases the count of the semaphore
Increases the count of a SyncSemaphore object.
prevcount
Returns the previous count of the semaphore.
示例 #1 SyncSemaphore::unlock() example
<?php
$semaphore = new SyncSemaphore("LimitedResource_2clients", 2);
if (!$semaphore->lock(3000))
{
echo "Unable to lock semaphore.";
exit();
}
/* ... */
$semaphore->unlock();
?>