(mongodb >=1.0.0)
MongoDB\BSON\Binary::getType — Returns the Binary's type
Cette fonction ne contient aucun paramètre.
Returns the Binary's type.
Exemple #1 MongoDB\BSON\Binary::getType() example
<?php
$binary = new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC);
var_dump($binary->getType());
?>
L'exemple ci-dessus va afficher :
int(0)