MongoDB\Driver\WriteConcern
PHP Manual

MongoDB\Driver\WriteConcern::getW

(mongodb >=1.0.0)

MongoDB\Driver\WriteConcern::getWReturns the WriteConcern's "w" option

Description

final public string|int|null MongoDB\Driver\WriteConcern::getW ( void )

Parameters

This function has no parameters.

Return Values

Returns the WriteConcern's "w" option.

Errors/Exceptions

Examples

Example #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());

?>

The above example will output:

int(1)
string(8) "majority"

See Also


MongoDB\Driver\WriteConcern
PHP Manual