MongoDBGridFSBucket-find.txt 2.04 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
===============================
MongoDB\\GridFS\\Bucket::find()
===============================

.. default-domain:: mongodb

.. contents:: On this page
   :local:
   :backlinks: none
   :depth: 1
   :class: singlecol

Definition
----------

.. phpmethod:: MongoDB\\GridFS\\Bucket::find()

   Finds documents from the GridFS bucket's files collection matching the query.

   .. code-block:: php

      function find($filter = [], array $options = []): MongoDB\Driver\Cursor

24
   This method has the following parameters:
25 26 27 28 29

   .. include:: /includes/apiargs/MongoDBCollection-method-find-param.rst

   The ``$options`` parameter supports the following options:

30
   .. include:: /includes/apiargs/MongoDBGridFSBucket-method-find-option.rst
31

32 33
Return Values
-------------
34

35
A :php:`MongoDB\\Driver\\Cursor <class.mongodb-driver-cursor>` object.
36

37 38 39 40 41 42 43
Errors/Exceptions
-----------------

.. include:: /includes/extracts/error-unsupportedexception.rst
.. include:: /includes/extracts/error-invalidargumentexception.rst
.. include:: /includes/extracts/error-driver-runtimeexception.rst

44 45 46 47 48
Behavior
--------

.. include:: /includes/extracts/note-bson-comparison.rst

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
Examples
--------

.. code-block:: php

   <?php

   $bucket = (new MongoDB\Client)->test->selectGridFSBucket();

   $stream = fopen('php://temp', 'w+b');
   fwrite($stream, "foobar");
   rewind($stream);

   $bucket->uploadFromStream('b', $stream);

   $cursor = $bucket->find(
       ['length' => ['$lte' => 6]],
       [
           'projection' => [
               'filename' => 1,
               'length' => 1,
               '_id' => 0,
            ],
            'sort' => ['length' => -1],
        ]
   );

   var_dump($cursor->toArray());

The output would then resemble::

   array(1) {
     [0]=>
     object(MongoDB\Model\BSONDocument)#3015 (1) {
       ["storage":"ArrayObject":private]=>
       array(2) {
         ["filename"]=>
         string(1) "b"
         ["length"]=>
         int(6)
       }
     }
   }
92

93 94
See Also
--------
95

96
- :phpmethod:`MongoDB\\Collection::find()`
97
- :phpmethod:`MongoDB\\GridFS\\Bucket::findOne()`