SyncReaderWriter::readunlock

(PECL sync >= 1.0.0)

SyncReaderWriter::readunlockReleases a read lock

Opis

public SyncReaderWriter::readunlock ( void ) : bool

Releases a read lock on a SyncReaderWriter object.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

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

Przykłady

Przykład #1 SyncReaderWriter::readunlock() example

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

Zobacz też:

add a note add a note

User Contributed Notes

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