İşlevleri
PHP Manual

MongoDB\BSON\fromJSON

(mongodb >=1.0.0)

MongoDB\BSON\fromJSONReturns the BSON representation of a JSON value

Açıklama

string MongoDB\BSON\fromJSON ( string $json )

Converts an » extended JSON string to its BSON representation.

Değiştirgeler

json (string)

JSON value to be converted.

Dönen Değerler

The serialized BSON document as a binary string.

Hatalar/İstisnalar

Throws MongoDB\Driver\Exception\UnexpectedValueException if the JSON value cannot be converted to BSON (e.g. due to a syntax error).

Örnekler

Örnek 1 MongoDB\BSON\fromJSON() example

<?php

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

?>

Yukarıdaki örneğin çıktısı:

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

Ayrıca Bakınız


İşlevleri
PHP Manual