MongoDB\BSON\Document::toPHP
(mongodb >=1.16.0)
Returns the PHP representation of the BSON document
Description
Unserializes the BSON document to its PHP representation. The typeMap parameter may be used to control the PHP types used for converting BSON arrays and documents (both root and embedded).
Duplicate-keys
Parameters
Return Values
The decoded PHP value.
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\InvalidArgumentExceptionif a class in the type map cannot be instantiated or does not implementMongoDB\BSON\Unserializable.
See Also
MongoDB\BSON\toPHP()- BSON Types