array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), '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\Driver\WriteResult::getServer

(mongodb >=1.0.0)

MongoDB\Driver\WriteResult::getServerReturns the server associated with this write result

说明

final public MongoDB\Driver\WriteResult::getServer(): MongoDB\Driver\Server

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)

参见