(mongodb >=1.0.0)
MongoDB\BSON\Binary::getData — Retourne les données de Binary
Cette fonction ne contient aucun paramètre.
Retourne les données de Binary.
Exemple #1 Exemple avec MongoDB\BSON\Binary::getData()
<?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"