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

MongoDB\BSON\Document::toPHP

PHP function Edit on GitHub ✎

(mongodb >=1.16.0)

Returns the PHP representation of the BSON document

Description

MongoDB\BSON\Document::toPHP(array|null $typeMap = null): array|object

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.

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\InvalidArgumentException if a class in the type map cannot be instantiated or does not implement MongoDB\BSON\Unserializable.

See Also

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