CakeFest 2024: The Official CakePHP Conference

SyncReaderWriter::readunlock

(PECL sync >= 1.0.0)

SyncReaderWriter::readunlockReleases a read lock

Description

public SyncReaderWriter::readunlock(): bool

Releases a read lock on a SyncReaderWriter object.

Parameters

This function has no parameters.

Return Values

Returns true on success or false on failure.

Examples

Example #1 SyncReaderWriter::readunlock() example

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

See Also

add a note

User Contributed Notes

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