MongoDB\BSON\Binary::__toString
(mongodb >=1.2.0)
MongoDB\BSON\Binary::__toString — Returns the Binary's data
Beschreibung
Diese Methode ist ein Alias für: MongoDB\BSON\Binary::getData().
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Returns the Binary's data.
Beispiele
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"
Siehe auch
- MongoDB\BSON\Binary::getData() - Returns the Binary's data
- » BSON Types