MongoDB\Driver\WriteResult::getInsertedCount
(mongodb >=1.0.0)
MongoDB\Driver\WriteResult::getInsertedCount — Description
Описание
final public ReturnType MongoDB\Driver\WriteResult::getInsertedCount
( void
)
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Ошибки
Примеры
Пример #1 MongoDB\Driver\WriteResult::getInsertedCount() example
<?php
/* ... */
?>
Результатом выполнения данного примера будет что-то подобное:
...
Смотрите также
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для работы с базами данных
- Расширения для работы с базами данных отдельных производителей
- MongoDB
- MongoDB\Driver
- MongoDB\Driver\WriteResult::getDeletedCount
- MongoDB\Driver\WriteResult::getInsertedCount
- MongoDB\Driver\WriteResult::getMatchedCount
- MongoDB\Driver\WriteResult::getModifiedCount
- MongoDB\Driver\WriteResult::getServer
- MongoDB\Driver\WriteResult::getUpsertedCount
- MongoDB\Driver\WriteResult::getUpsertedIds
- MongoDB\Driver\WriteResult::getWriteConcernError
- MongoDB\Driver\WriteResult::getWriteErrors
Коментарии
In case you are trying to add an index to a collection, and the index is already there, the value of getInsertedCount() depends on the MongoDB server version.
For example, MongoDB version 2.4 consider the index as inserted, but version 3.6 does not.