MongoDB\BSON\Binary::__construct
(mongodb >=1.0.0)
MongoDB\BSON\Binary::__construct — Construct a new Binary
Description
Parameters
data(string)Binary data.
type(int)Unsigned 8-bit integer denoting the data's type. Defaults to
MongoDB\BSON\Binary::TYPE_GENERICif not specified.
Errors/Exceptions
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
- Throws MongoDB\Driver\Exception\InvalidArgumentException if
typeis not an unsigned 8-bit integer. - Throws MongoDB\Driver\Exception\InvalidArgumentException if
typeisMongoDB\BSON\Binary::TYPE_UUIDorMongoDB\BSON\Binary::TYPE_OLD_UUIDanddatais not exactly 16 bytes in length.
Changelog
| Version | Description |
|---|---|
| PECL mongodb 1.15.0 | The |
| PECL mongodb 1.3.0 | MongoDB\Driver\Exception\InvalidArgumentException is thrown if |
| PECL mongodb 1.1.3 | MongoDB\Driver\Exception\InvalidArgumentException is thrown if |
Examples
Example #1 MongoDB\BSON\Binary::__construct() example
<?php
$binary = new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC);
var_dump($binary);
?>The above example will output:
object(MongoDB\BSON\Binary)#1 (2) {
["data"]=>
string(3) "foo"
["type"]=>
int(0)
}See Also
↑ and ↓ to navigate • Enter to select • Esc to close • / to open