PHP 8.4.0 RC4 available for testing

MongoDB\BSON\fromJSON

(mongodb >=1.0.0)

MongoDB\BSON\fromJSONRetourne la représentation BSON d'une valeur JSON

Avertissement

Cette fonction a été DÉPRÉCIÉE depuis la version 1.20.0 de l'extension et sera supprimée dans la version 2.0. Les applications devraient utiliser MongoDB\BSON\Document::fromJSON() à la place.

Description

MongoDB\BSON\fromJSON(string $json): string

Convertit une chaine » JSON étendu en sa représentation BSON..

Liste de paramètres

json (string)

Valeur JSON à convertir.

Valeurs de retour

Le document sérialisé BSON en tant que chaîne binaire.

Erreurs / Exceptions

Exemples

Exemple #1 Exemple avec MongoDB\BSON\fromJSON()

<?php

$json
= '{ "_id": { "$oid": "563143b280d2387c91807965" } }';
$bson = MongoDB\BSON\fromJSON($json);
$value = MongoDB\BSON\toPHP($bson);
var_dump($value);

?>

L'exemple ci-dessus va afficher :

object(stdClass)#2 (1) {
  ["_id"]=>
  object(MongoDB\BSON\ObjectId)#1 (1) {
    ["oid"]=>
    string(24) "563143b280d2387c91807965"
  }
}

Voir aussi

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top