MongoDB\BSON\PackedArray::toPHP

Returns the PHP representation of the BSON array

Description

final public arrayobject MongoDB\BSON\PackedArray::toPHP(arraynull $typeMap = null)

Parameters

typeMap (array)

Type map configuration.

Return Values

The decoded PHP value.

Note: When encountering a value encoded as 64-bit integer in the BSON array, 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