SyncReaderWriter::writeunlock

(PECL sync >= 1.0.0)

SyncReaderWriter::writeunlockReleases a write lock

說明

public bool SyncReaderWriter::writeunlock ( void )

Releases a write lock on a SyncReaderWriter object.

參數

此函式沒有參數。

回傳值

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

範例

Example #1 SyncReaderWriter::writeunlock() example

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

參見

add a note add a note

User Contributed Notes

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