MongoDB\BSON\Binary::getType

(mongodb >=1.0.0)

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

Descrierea

final public MongoDB\BSON\Binary::getType ( ) : int

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the Binary's type.

Erori/Excepții

Exemple

Example #1 MongoDB\BSON\Binary::getType() example

<?php

$binary 
= new MongoDB\BSON\Binary('foo'MongoDB\BSON\Binary::TYPE_GENERIC);
var_dump($binary->getType());

?>

Exemplul de mai sus va afișa:

int(0)

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top