Returns the Binary's type
この関数にはパラメータはありません。
Returns the Binary's type.
例1 MongoDB\BSON\Binary::getType example
<?php $binary = new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC); var_dump($binary->getType()); ?>
上の例の出力は以下となります。
int(0)