PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

SyncReaderWriter::__construct - Constructs a new SyncReaderWriter object | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

SyncReaderWriter::__construct

(PECL sync >= 1.0.0)

SyncReaderWriter::__constructConstructs a new SyncReaderWriter object

説明

public SyncReaderWriter::__construct ([ string $name [, bool $autounlock = true ]] )

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.

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

参考


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「SyncReaderWriter::__construct - Constructs a new SyncReaderWriter object」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | SyncReaderWriter::__construct - Constructs a new SyncReaderWriter object」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: