MongoDB\BSON\Document::get

(mongodb >=1.16.0)

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

说明

finalpublicMongoDB\BSON\Document::get(string$key): mixed

参数

key (string)

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.

错误/异常

参见

To Top