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
Int64instance. This value can be provided as anintorstring, the latter being required on 32-bit platforms to represent 64-bit values.
Changelog
| Version | Description |
|---|---|
| PECL mongodb 1.16.0 | This method was made public to support creating Int64 instances when working with raw BSON. |
Errors/Exceptions
- Throws
MongoDB\Driver\Exception\InvalidArgumentExceptionif stringvaluecannot be parsed as a 64-bit integer.
See Also
- BSON Types