MongoDB\BSON\fromJSON

(mongodb >=1.0.0)

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

警告

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

说明

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

Converts an » extended JSON string to its BSON representation.

参数

json (string)

JSON value to be converted.

返回值

The serialized BSON document as a binary string.

错误/异常

示例

示例 #1 MongoDB\BSON\fromJSON() example

<?php

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

?>

以上示例会输出:

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

参见

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top