MongoDB\Driver\WriteConcern::getJournal

(mongodb >=1.0.0)

MongoDB\Driver\WriteConcern::getJournalReturns the WriteConcern's "journal" option

说明

final public MongoDB\Driver\WriteConcern::getJournal ( void ) : boolean|null

参数

此函数没有参数。

返回值

Returns the WriteConcern's "journal" option.

错误/异常

范例

Example #1 MongoDB\Driver\WriteConcern::getJournal() example

<?php

$wc 
= new MongoDB\Driver\WriteConcern(1);
var_dump($wc->getJournal());

$wc = new MongoDB\Driver\WriteConcern(10true);
var_dump($wc->getJournal());

$wc = new MongoDB\Driver\WriteConcern(10false);
var_dump($wc->getJournal());

?>

以上例程会输出:

NULL
bool(true)
bool(false)
相关文章
php mongodb driver monitoring commandstartedevent returns the command namephp mongodb driver monitoring commandstartedevent returns the database on which the command was executedphp mongodb driver monitoring commandstartedevent returns the command s operation idphp mongodb driver readconcern returns the readconcern s level optionphp mongodb driver readpreference returns the readpreference s maxstalenessseconds optionphp mongodb driver readpreference returns the readpreference s mode optionphp mongodb driver readpreference returns the readpreference s tagsets optionphp mongodb driver server returns the hostname of this serverphp mongodb driver server returns an array of information about this serverphp mongodb driver server returns the latency of this serverphp mongodb driver writeconcern returns an object for bson serializationphp mongodb driver writeconcern returns the writeconcern s journal optionphp mongodb driver writeconcern returns the writeconcern s w optionphp mongodb driver writeconcern returns the writeconcern s wtimeout optionphp mongodb driver writeconcern checks if this is the default write concernphp mongodb driver writeconcernerror returns the writeconcernerror s error codephp mongodb driver writeconcernerror returns additional metadata for the writeconcernerrorphp mongodb driver writeresult returns any write concern error that occurredphp mongodb driver writeresult returns any write errors that occurredphp mongodb driver writeresult returns whether the write was acknowledged
关注编程学问公众号