MongoDB\BSON\fromJSON
(mongodb >=1.0.0)
MongoDB\BSON\fromJSON — Returns the BSON representation of a JSON value
Beschreibung
$json): stringConverts an » extended JSON string to its BSON representation.
Parameter-Liste
-
json(string) -
JSON value to be converted.
Rückgabewerte
The serialized BSON document as a binary string.
Fehler/Exceptions
- Throws MongoDB\Driver\Exception\UnexpectedValueException if the JSON value cannot be converted to BSON (e.g. due to a syntax error).
Beispiele
Beispiel #1 MongoDB\BSON\fromJSON() example
<?php
$json = '{ "_id": { "$oid": "563143b280d2387c91807965" } }';
$bson = MongoDB\BSON\fromJSON($json);
$value = MongoDB\BSON\toPHP($bson);
var_dump($value);
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
object(stdClass)#2 (1) {
["_id"]=>
object(MongoDB\BSON\ObjectId)#1 (1) {
["oid"]=>
string(24) "563143b280d2387c91807965"
}
}
Siehe auch
- MongoDB\BSON\toJSON() - Returns the Legacy Extended JSON representation of a BSON value
- » MongoDB Extended JSON
- » MongoDB BSON

