array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), 'this' => array ( 0 => 'syncsemaphore.lock.php', 1 => 'SyncSemaphore::lock', 2 => 'Decreases the count of the semaphore or waits', ), 'up' => array ( 0 => 'class.syncsemaphore.php', 1 => 'SyncSemaphore', ), 'prev' => array ( 0 => 'syncsemaphore.construct.php', 1 => 'SyncSemaphore::__construct', ), 'next' => array ( 0 => 'syncsemaphore.unlock.php', 1 => 'SyncSemaphore::unlock', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/sync/syncsemaphore/lock.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

SyncSemaphore::lock

(PECL sync >= 1.0.0)

SyncSemaphore::lockDecreases the count of the semaphore or waits

Açıklama

public SyncSemaphore::lock(int $wait = -1): bool

Decreases the count of a SyncSemaphore object or waits until the semaphore becomes non-zero.

Bağımsız Değişkenler

wait

The number of milliseconds to wait for the semaphore. A value of -1 is infinite.

Dönen Değerler

Başarı durumunda true, başarısızlık durumunda false döner.

Örnekler

Örnek 1 SyncSemaphore::lock() example

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

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

exit();
}

/* ... */

$semaphore->unlock();
?>

Ayrıca Bakınız