PHP 8.5.0 Beta 3 available for testing

SyncReaderWriter::__construct

(PECL sync >= 1.0.0)

SyncReaderWriter::__construct โ€” Constructs a new SyncReaderWriter object

่ฏดๆ˜Ž

public SyncReaderWriter::__construct(string $name = ?, int $autounlock = 1)

Constructs a named or unnamed reader-writer object.

ๅ‚ๆ•ฐ

name

The name of the reader-writer if this is a named reader-writer object.

ๆณจๆ„:

If the name already exists, it must be able to be opened by the current user that the process is running as or an exception will be thrown with a meaningless error message.

ๆณจๆ„: On Windows, name must not contain backslashes.

autounlock

Specifies whether or not to automatically unlock the reader-writer at the conclusion of the PHP script.

่ญฆๅ‘Š

If an object is: A named reader-writer with an autounlock of FALSE, the object is locked for either reading or writing, and the PHP script concludes before the object is unlocked, then the underlying objects will end up in an inconsistent state.

่ฟ”ๅ›žๅ€ผ

The new SyncReaderWriter object.

้”™่ฏฏ๏ผๅผ‚ๅธธ

An exception is thrown if the reader-writer cannot be created or opened.

็คบไพ‹

็คบไพ‹ #1 SyncReaderWriter::__construct() example

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

$readwrite->writelock();
/* ... */
$readwrite->writeunlock();
?>

ๅ‚่ง

๏ผ‹ๆทปๅŠ ๅค‡ๆณจ

็”จๆˆท่ดก็Œฎ็š„ๅค‡ๆณจ

ๆญค้กต้ขๅฐšๆ— ็”จๆˆท่ดก็Œฎ็š„ๅค‡ๆณจใ€‚
To Top