array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'function.mongodb.bson-fromjson.php', 1 => 'MongoDB\\BSON\\fromJSON', 2 => 'Returns the BSON representation of a JSON value', ), 'up' => array ( 0 => 'ref.bson.functions.php', 1 => 'Funzioni', ), 'prev' => array ( 0 => 'ref.bson.functions.php', 1 => 'Funzioni', ), 'next' => array ( 0 => 'function.mongodb.bson-fromphp.php', 1 => 'MongoDB\\BSON\\fromPHP', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mongodb/functions/bson/fromjson.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

MongoDB\BSON\fromJSON

(mongodb >=1.0.0)

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

Avviso

This function has been DEPRECATED as of extension version 1.20.0 and was removed in 2.0. Applications should use MongoDB\BSON\Document::fromJSON() instead.

Descrizione

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

Converts an » extended JSON string to its BSON representation.

Elenco dei parametri

json (string)

JSON value to be converted.

Valori restituiti

The serialized BSON document as a binary string.

Errori/Eccezioni

Log delle modifiche

Versione Descrizione
PECL mongodb 2.0.0 This function was removed.

Esempi

Example #1 MongoDB\BSON\fromJSON() example

<?php

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

?>

Il precedente esempio visualizzerĂ :

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

Vedere anche: