MongoDB\BSON\Binary::__construct

(mongodb >=1.0.0)

MongoDB\BSON\Binary::__constructConstruct a new Binary

说锟斤拷

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

锟斤拷锟斤拷

data (string)

Binary data.

type (integer)

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

锟斤拷锟斤拷锟届常

锟斤拷锟斤拷锟斤拷志

锟芥本 说锟斤拷
1.3.0

MongoDB\Driver\Exception\InvalidArgumentException is thrown if type is MongoDB\BSON\Binary::TYPE_UUID or MongoDB\BSON\Binary::TYPE_OLD_UUID and data is not exactly 16 bytes in length.

1.1.3

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

锟斤拷锟斤拷

Example #1 MongoDB\BSON\Binary::__construct() example

<?php

$binary 
= new MongoDB\BSON\Binary('foo'MongoDB\BSON\Binary::TYPE_GENERIC);
var_dump($binary);

?>

锟斤拷锟斤拷锟斤拷锟教伙拷锟斤拷锟斤拷锟�

object(MongoDB\BSON\Binary)#1 (2) {
  ["data"]=>
  string(3) "foo"
  ["type"]=>
  int(0)
}

锟轿硷拷