update : 2015.11.03
php.shukuma.com

검색:
 
 
Releases a read lock

SyncReaderWriter::readunlock

(PECL sync >= 1.0.0)

SyncReaderWriter::readunlockReleases a read lock

설명

public bool SyncReaderWriter::readunlock ( void )

Releases a read lock on a SyncReaderWriter object.

인수

이 함수는 인수가 없습니다.

반환값

A boolean of TRUE if the unlock operation was successful, FALSE otherwise.

예제

Example #1 SyncReaderWriter::readunlock() example

<?php
$readwrite 
= new SyncReaderWriter("FileCacheLock");
$readwrite->readlock();
/* ... */
$readwrite->readunlock();
?>

참고