php8.5
Home/ Manual/ bson / document/ MongoDB\BSON\Document::offsetGet

MongoDB\BSON\Document::offsetGet

PHP function Edit on GitHub ✎

(mongodb >=1.17.0)

Returns the value of a key in the document

Description

MongoDB\BSON\Document::offsetGet(mixed $key): mixed

Parameters

key

The key to retrieve from the document.

Return Values

Returns the value associated with the given key. If the key is not present in the document, an exception is thrown.

Note

When encountering a value encoded as 64-bit integer in the BSON document, the return value of this method will be a MongoDB\BSON\Int64 instance.

Errors/Exceptions

  • Throws MongoDB\Driver\Exception\RuntimeException if the key is not present in the document.

See Also

  • ArrayAccess::offsetGet
  • MongoDB\BSON\Document::get

Source: reference/mongodb/bson/document/offsetget.xml · from the official PHP manual (php/doc-en)