MongoGridFS::remove - Remove files and their chunks from the database
Вернуться к: MongoGridFS
MongoGridFS::remove
(PECL mongo >=0.9.0)
MongoGridFS::remove — Remove files and their chunks from the database
Описание
$criteria
= array()
[, array $options
= array()
]] )Список параметров
-
criteria
-
The filename or criteria for which to search.
-
options
-
An array of options for the remove operations executed against the chunks and files collections. See MongoCollection::remove() for documentation on these options.
Возвращаемые значения
Returns an array containing the status of the removal (with respect to the
files collection) if the "w" option is
set. Otherwise, returns TRUE
.
Fields in the status array are described in the documentation for MongoCollection::insert().
Ошибки
Исключение MongoCursorException бросается, если установлена опция "w" и не прошла запись.
Исключение MongoCursorTimeoutException бросается, если опция "w" установлена в значение больше одного и операция заняла больше, чем MongoCursor::$timeout миллисекунд. При этом операция на сервере не прерывается, так как это ограничение времени работает на клиентской стороне. Операция в миллисекундах в MongoCollection::$wtimeout.
Вернуться к: MongoGridFS