PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

MongoDB\BSON\Binary::__construct - Construct a new Binary | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

MongoDB\BSON\Binary::__construct

(mongodb >=1.0.0)

MongoDB\BSON\Binary::__constructConstruct a new Binary

説明

final public MongoDB\BSON\Binary::__construct ( string $data , integer $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.

例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)
}

忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「MongoDB\BSON\Binary::__construct - Construct a new Binary」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | MongoDB\BSON\Binary::__construct - Construct a new Binary」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: