array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), '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

Descrizione

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.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Errori/Eccezioni

Esempi

Example #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);

?>

Il precedente esempio visualizzerĂ :

bool(true)

Vedere anche: