MongoDB\BSON\Binary::getData
(mongodb >=1.0.0)
MongoDB\BSON\Binary::getData — Returns the Binary's data
Beschreibung
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Returns the Binary's data.
Fehler/Exceptions
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
Beispiele
Beispiel #1 MongoDB\BSON\Binary::getData() example
<?php
$binary = new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC);
var_dump($binary->getData());
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
string(3) "foo"