PHP 8.4.0 RC4 available for testing

MongoDB\BSON\Binary::getType

(mongodb >=1.0.0)

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

Опис

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

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns the Binary's type.

Помилки/виключення

Приклади

Приклад #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

User Contributed Notes

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