MongoDB\BSON\Binary
PHP Manual

MongoDB\BSON\Binary::getType

(mongodb >=1.0.0)

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

Descrição

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

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns the Binary's type.

Erros

Exemplos

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

<?php

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

?>

O exemplo acima irá imprimir:

int(0)

Veja Também


MongoDB\BSON\Binary
PHP Manual