PHP Класс Phalcon\Db\Adapter\MongoDB\Operation\FindOneAndDelete

См. также: MongoDB\Collection::findOneAndDelete()
См. также: http://docs.mongodb.org/manual/reference/command/findAndModify/
Наследование: implements Phalcon\Db\Adapter\MongoDB\Operation\Executable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( string $databaseName, string $collectionName, array | object $filter, array $options = [] ) Constructs a findAndModify command for deleting a document.
execute ( MongoDB\Driver\Server $server ) : object | null Execute the operation.

Описание методов

__construct() публичный метод

Supported options: * maxTimeMS (integer): The maximum amount of time to allow the query to run. * projection (document): Limits the fields to return for the matching document. * sort (document): Determines which document the operation modifies if the query selects multiple documents. * writeConcern (MongoDB\Driver\WriteConcern): Write concern. This option is only supported for server versions >= 3.2.
public __construct ( string $databaseName, string $collectionName, array | object $filter, array $options = [] )
$databaseName string Database name
$collectionName string Collection name
$filter array | object Query by which to filter documents
$options array Command options

execute() публичный метод

Execute the operation.
См. также: Executable::execute()
public execute ( MongoDB\Driver\Server $server ) : object | null
$server MongoDB\Driver\Server
Результат object | null