MongoDB\BSON\Binary
PHP Manual

MongoDB\BSON\Binary::getData

(mongodb >=1.0.0)

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

Description

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

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Returns the Binary's data.

Erreurs / Exceptions

Exemples

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

<?php

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

?>

L'exemple ci-dessus va afficher :

string(3) "foo"

Voir aussi


MongoDB\BSON\Binary
PHP Manual