GoLang MongoDB\BSON\Binary::__toString

request it (305)
GoLang replacement for PHP's MongoDB\BSON\Binary::__toString [edit | history]



Do you know a GoLang replacement for PHP's MongoDB\BSON\Binary::__toString? Write it!

PHP MongoDB\BSON\Binary::__toString

PHP original manual for MongoDB\BSON\Binary::__toString [ show | php.net ]

MongoDB\BSON\Binary::__toString

(mongodb >=1.2.0)

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

Description

final public string MongoDB\BSON\Binary::__toString ( void )

This method is an alias of: MongoDB\BSON\Binary::getData().

Parameters

This function has no parameters.

Return Values

Returns the Binary's data.

Errors/Exceptions

Examples

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

<?php

var_dump
((string) new MongoDB\BSON\Binary('foo'MongoDB\BSON\Binary::TYPE_GENERIC));

?>

The above example will output:

string(3) "foo"

See Also