(mongodb >=1.2.0)
MongoDB\BSON\Binary::__toString — Returns the Binary's data
Diese Methode ist ein Alias für: MongoDB\BSON\Binary::getData().
Diese Funktion besitzt keine Parameter.
Returns the Binary's data.
Beispiel #1 MongoDB\BSON\Binary::__toString() example
<?php
var_dump((string) new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC));
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
string(3) "foo"