array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'mongodb-driver-writeconcern.getwtimeout.php', 1 => 'MongoDB\\Driver\\WriteConcern::getWtimeout', 2 => 'Returns the WriteConcern\'s "wtimeout" option', ), 'up' => array ( 0 => 'class.mongodb-driver-writeconcern.php', 1 => 'MongoDB\\Driver\\WriteConcern', ), 'prev' => array ( 0 => 'mongodb-driver-writeconcern.getw.php', 1 => 'MongoDB\\Driver\\WriteConcern::getW', ), 'next' => array ( 0 => 'mongodb-driver-writeconcern.isdefault.php', 1 => 'MongoDB\\Driver\\WriteConcern::isDefault', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mongodb/mongodb/driver/writeconcern/getwtimeout.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(mongodb >=1.0.0)
MongoDB\Driver\WriteConcern::getWtimeout — Returns the WriteConcern's "wtimeout" option
此函数没有参数。
Returns the WriteConcern's "wtimeout" option.
版本 | 说明 |
---|---|
PECL mongodb 1.7.0 |
On 32-bit systems, this method will always truncate the wTimeout
value if it exceeds the 32-bit range. In that case, a warning will be
emitted.
|
示例 #1 MongoDB\Driver\WriteConcern::getWtimeout() example
<?php
$wc = new MongoDB\Driver\WriteConcern(1);
var_dump($wc->getWtimeout());
$wc = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 3000);
var_dump($wc->getWtimeout());
?>
以上示例会输出:
int(0) int(3000)