MongoDB\BSON\Binary::__construct

Construct a new Binary

Description

final public MongoDB\BSON\Binary::__construct ( string $data , integer $type )

Parameters

data (string)

Binary data.

type (integer)

Unsigned 8-bit integer denoting the data's type.

Errors/Exceptions

  • Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
  • Throws MongoDB\Driver\Exception\InvalidArgumentException if type is not an unsigned 8-bit integer.

Changelog

Version Description
1.1.3

MongoDB\Driver\Exception\InvalidArgumentException is thrown if type is not an unsigned 8-bit integer.

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