(mongodb >=1.0.0)
MongoDB\Driver\WriteConcern::getW — Returns the WriteConcern's "w" option
Cette fonction ne contient aucun paramètre.
Returns the WriteConcern's "w" option.
Exemple #1 MongoDB\Driver\WriteConcern::getW() example
<?php
$wc = new MongoDB\Driver\WriteConcern(1);
var_dump($wc->getW());
$wc = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY);
var_dump($wc->getW());
?>
L'exemple ci-dessus va afficher :
int(1) string(8) "majority"