MongoDB\BSON\Binary::getType

(mongodb >=1.0.0)

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

설명

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

인수

이 함수는 인수가 없습니다.

반환값

Returns the Binary's type.

오류/예외

예제

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

<?php

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

?>

위 예제의 출력:

int(0)
add a note add a note

User Contributed Notes

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