MongoDB\Driver\WriteResult::getDeletedCount

(mongodb >=1.0.0)

MongoDB\Driver\WriteResult::getDeletedCountReturns the number of documents deleted

Descrição

final public MongoDB\Driver\WriteResult::getDeletedCount(): ?int

Parâmetros

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

Valor Retornado

Returns the number of documents deleted, or null if the write was not acknowledged.

Erros/Exceções

Exemplos

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

<?php

$manager
= new MongoDB\Driver\Manager;

$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert(['x' => 1]);
$bulk->update(['x' => 1], ['$set' => ['y' => 3]]);
$bulk->update(['x' => 2], ['$set' => ['y' => 1]], ['upsert' => true]);
$bulk->update(['x' => 3], ['$set' => ['y' => 2]], ['upsert' => true]);
$bulk->delete(['x' => 1]);

$result = $manager->executeBulkWrite('db.collection', $bulk);

var_dump($result->getDeletedCount());

?>

O exemplo acima produzirá:

int(1)

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top