CakeFest 2024: The Official CakePHP Conference

MongoDB\Driver\WriteConcern::getW

(mongodb >=1.0.0)

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

Description

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

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Returns the WriteConcern's "w" option.

Erreurs / Exceptions

  • Lance une exception MongoDB\Driver\InvalidArgumentException lors d'une erreur survenue pendant l'analyse d'un argument.

Exemples

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"
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top