array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'mongodb-driver-writeresult.getserver.php', 1 => 'MongoDB\\Driver\\WriteResult::getServer', 2 => 'Returns the server associated with this write result', ), 'up' => array ( 0 => 'class.mongodb-driver-writeresult.php', 1 => 'MongoDB\\Driver\\WriteResult', ), 'prev' => array ( 0 => 'mongodb-driver-writeresult.getmodifiedcount.php', 1 => 'MongoDB\\Driver\\WriteResult::getModifiedCount', ), 'next' => array ( 0 => 'mongodb-driver-writeresult.getupsertedcount.php', 1 => 'MongoDB\\Driver\\WriteResult::getUpsertedCount', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mongodb/mongodb/driver/writeresult/getserver.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\WriteResult::getServer — Returns the server associated with this write result
Returns the MongoDB\Driver\Server associated with this write result. This is the server that executed the MongoDB\Driver\BulkWrite.
У цієї функції немає параметрів.
Returns the MongoDB\Driver\Server associated with this write result.
Приклад #1 MongoDB\Driver\WriteResult::getServer() example
<?php
$manager = new MongoDB\Driver\Manager;
$server = $manager->selectServer();
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert(['x' => 1]);
$result = $server->executeBulkWrite('db.collection', $bulk);
var_dump($result->getServer() == $server);
?>Поданий вище приклад виведе:
bool(true)