MongoDB\BSON\fromJSONReturns the BSON representation of a JSON value Description
string MongoDB\BSON\fromJSON
( string
$json
)Converts an » extended JSON string to its BSON representation. Parameters
Return ValuesThe serialized BSON document as a binary string. Errors/ExceptionsThrows MongoDB\Driver\Exception\UnexpectedValueException if the JSON value cannot be converted to BSON (e.g. due to a syntax error). ExamplesExample #1 MongoDB\BSON\fromJSON example
<?phpThe above example will output:
object(stdClass)#2 (1) {
["_id"]=>
object(MongoDB\BSON\ObjectID)#1 (1) {
["oid"]=>
string(24) "563143b280d2387c91807965"
}
}
See Also
|