MongoDB\BSON\Binary::getData

(mongodb >=1.0.0)

MongoDB\BSON\Binary::getDataReturns the Binary's data

Descrierea

final public MongoDB\BSON\Binary::getData ( ) : string

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the Binary's data.

Erori/Excepții

Exemple

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

<?php

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

?>

Exemplul de mai sus va afișa:

string(3) "foo"

A se vedea și

add a note add a note

User Contributed Notes

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