MongoDB\Driver\WriteResult
PHP Manual

MongoDB\Driver\WriteResult::getServer

(mongodb >=1.0.0)

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

Descrição

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

Returns the MongoDB\Driver\Server associated with this write result. This is the server that executed the MongoDB\Driver\BulkWrite.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

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

Erros

Exemplos

Exemplo #1 MongoDB\Driver\WriteResult::getServer() example

<?php

$manager 
= new MongoDB\Driver\Manager;
$server $manager->selectServer(new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_PRIMARY));

$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert(['x' => 1]);

$result $server->executeBulkWrite('db.collection'$bulk);

var_dump($result->getServer() == $server);

?>

O exemplo acima irá imprimir:

bool(true)

Veja Também


MongoDB\Driver\WriteResult
PHP Manual