Dutch PHP Conference 2025 - Call For Papers

MongoDB\BSON\Document::offsetGet

(mongodb >=1.17.0)

MongoDB\BSON\Document::offsetGetReturns the value of a key in the document

Опис

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

Параметри

key

The key to retrieve from the document.

Значення, що повертаються

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

Зауваження: 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.

Помилки/виключення

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top