php8.5
Home/ Manual/ driver / writeresult/ MongoDB\Driver\WriteResult::getServer

MongoDB\Driver\WriteResult::getServer

PHP function Edit on GitHub ✎

(mongodb >=1.0.0)

Returns the server associated with this write result

Description

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.

Parameters Parameters

Return Values

Returns the MongoDB\Driver\Server associated with this write result.

Errors/Exceptions

Examples

MongoDB\Driver\WriteResult::getServer() example

php
<?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);

?>

The above example will output:

output
bool(true)

See Also

  • MongoDB\Driver\Server

Source: reference/mongodb/mongodb/driver/writeresult/getserver.xml · from the official PHP manual (php/doc-en)