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

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top