(mongodb >=1.0.0)
MongoDB\Driver\WriteConcern::getJournal — Returns the WriteConcern's "journal" option
Cette fonction ne contient aucun paramètre.
Returns the WriteConcern's "journal" option.
Exemple #1 MongoDB\Driver\WriteConcern::getJournal() example
<?php
$wc = new MongoDB\Driver\WriteConcern(1);
var_dump($wc->getJournal());
$wc = new MongoDB\Driver\WriteConcern(1, 0, true);
var_dump($wc->getJournal());
$wc = new MongoDB\Driver\WriteConcern(1, 0, false);
var_dump($wc->getJournal());
?>
L'exemple ci-dessus va afficher :
NULL bool(true) bool(false)