(mongodb >=1.0.0)
MongoDB\BSON\Binary::getType — Returns the Binary's type
此函數(shù)沒有參數(shù)。
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)