(mongodb >=1.0.0)
MongoDB\BSON\Binary::getType — Returns the Binary's type
Diese Funktion hat keine Parameter.
Returns the Binary's type.
Beispiel #1 MongoDB\BSON\Binary::getType() example
<?php
$binary = new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC);
var_dump($binary->getType());
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
int(0)