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); ?>

SyncSemaphore::unlock

(PECL sync >= 1.0.0)

SyncSemaphore::unlockIncreases the count of the semaphore

说明

public SyncSemaphore::unlock(int &$prevcount = ?): bool

Increases the count of a SyncSemaphore object.

参数

prevcount

Returns the previous count of the semaphore.

返回值

成功时返回 true, 或者在失败时返回 false

示例

示例 #1 SyncSemaphore::unlock() example

<?php
$semaphore
= new SyncSemaphore("LimitedResource_2clients", 2);

if (!
$semaphore->lock(3000))
{
echo
"Unable to lock semaphore.";

exit();
}

/* ... */

$semaphore->unlock();
?>

参见