MongoDB\BSON\Binary
PHP Manual

MongoDB\BSON\Binary::getType

(mongodb >=1.0.0)

MongoDB\BSON\Binary::getTypeReturns the Binary's type

Beschreibung

final public integer MongoDB\BSON\Binary::getType ( void )

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns the Binary's type.

Fehler/Exceptions

Beispiele

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)

Siehe auch


MongoDB\BSON\Binary
PHP Manual