|
update : 2015.11.03
php.shukuma.com검색:
|
MongoDB\BSON\fromJSON(mongodb >=1.0.0) MongoDB\BSON\fromJSON — Returns the BSON representation of a JSON value 설명
string MongoDB\BSON\fromJSON
( string
$json
)Converts an » extended JSON string to its BSON representation. 인수
반환값
The serialized BSON document as a binary string. 예제Example #1 MongoDB\BSON\fromJSON() example
<?php위 예제의 출력:
object(stdClass)#2 (1) {
["_id"]=>
object(MongoDB\BSON\ObjectID)#1 (1) {
["oid"]=>
string(24) "563143b280d2387c91807965"
}
}
참고
|