php8.5
Home/ Manual/ bson / int64/ MongoDB\BSON\Int64::__construct

MongoDB\BSON\Int64::__construct

PHP function Edit on GitHub ✎

(mongodb >=1.5.0)

Construct a new Int64

Description

MongoDB\BSON\Int64::__construct(int|string $value)

Creates a new MongoDB\BSON\Int64 instance for the given integer value.

Parameters

value (int|string)

The value to assign to the Int64 instance. This value can be provided as an int or string, the latter being required on 32-bit platforms to represent 64-bit values.

Changelog

VersionDescription
PECL mongodb 1.16.0This method was made public to support creating Int64 instances when working with raw BSON.

Errors/Exceptions

  • Throws MongoDB\Driver\Exception\InvalidArgumentException if string value cannot be parsed as a 64-bit integer.

See Also

  • BSON Types

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