MongoDB\BSON\toRelaxedExtendedJSON

    (mongodb >=1.3.0)

    MongoDB\BSON\toRelaxedExtendedJSON — BSON 값의 이완된 확장 JSON 표현을 반환합니다.


    설명

    MongoDB\BSON\toRelaxedExtendedJSON(string $bson): string

    BSON 문자열을 » Relaxed Extended JSON 표현으로 변환합니다. 완화된 형식은 형식 충실도를 희생하면서 JSON 형식 프리미티브를 사용하는 것을 선호하며 웹 API와 사람이 쉽게 사용할 수 있는 출력을 생성하는 데 가장 적합합니다.


    매개변수

    bson (string)
    변환할 BSON 값입니다.

    반환 값

    변환된 JSON 값입니다.


    오류/예외

    • 입력에 정확히 하나의 BSON 문서가 포함되지 않은 경우 MongoDB\Driver\Exception\UnexpectedValueException이 발생합니다. 가능한 원인에는 잘못된 BSON, 추가 데이터(BSON 문서 하나를 읽은 후) 또는 예기치 않은 » libbson 오류가 포함되지만 이에 국한되지 않습니다.

    Examples

    예제 #1 MongoDB\BSON\toRelaxedExtendedJSON() 예제

                        
    <?php
    
    $documents = [
        [ 'null' => null ],
        [ 'boolean' => true ],
        [ 'string' => 'foo' ],
        [ 'int32' => 123 ],
        [ 'int64' => 4294967295 ],
        [ 'double' => 1.0, ],
        [ 'nan' => NAN ],
        [ 'pos_inf' => INF ],
        [ 'neg_inf' => -INF ],
        [ 'array' => [ 'foo', 'bar' ]],
        [ 'document' => [ 'foo' => 'bar' ]],
        [ 'oid' => new MongoDB\BSON\ObjectId('56315a7c6118fd1b920270b1') ],
        [ 'dec128' => new MongoDB\BSON\Decimal128('1234.5678') ],
        [ 'binary' => new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC) ],
        [ 'date' => new MongoDB\BSON\UTCDateTime(1445990400000) ],
        [ 'timestamp' => new MongoDB\BSON\Timestamp(1234, 5678) ],
        [ 'regex' => new MongoDB\BSON\Regex('pattern', 'i') ],
        [ 'code' => new MongoDB\BSON\Javascript('function() { return 1; }') ],
        [ 'code_ws' => new MongoDB\BSON\Javascript('function() { return a; }', ['a' => 1]) ],
        [ 'minkey' => new MongoDB\BSON\MinKey ],
        [ 'maxkey' => new MongoDB\BSON\MaxKey ],
    ];
    
    foreach ($documents as $document) {
        $bson = MongoDB\BSON\fromPHP($document);
        echo MongoDB\BSON\toRelaxedExtendedJSON($bson), "\n";
    }
    
    ?>
                      

    위의 예는 다음을 출력합니다.

    { "null" : null }
    { "boolean" : true }
    { "string" : "foo" }
    { "int32" : 123 }
    { "int64" : 4294967295 }
    { "double" : 1.0 }
    { "nan" : { "$numberDouble" : "NaN" } }
    { "pos_inf" : { "$numberDouble" : "Infinity" } }
    { "neg_inf" : { "$numberDouble" : "-Infinity" } }
    { "array" : [ "foo", "bar" ] }
    { "document" : { "foo" : "bar" } }
    { "oid" : { "$oid" : "56315a7c6118fd1b920270b1" } }
    { "dec128" : { "$numberDecimal" : "1234.5678" } }
    { "binary" : { "$binary" : { "base64": "Zm9v", "subType" : "00" } } }
    { "date" : { "$date" : "2015-10-28T00:00:00Z" } }
    { "timestamp" : { "$timestamp" : { "t" : 5678, "i" : 1234 } } }
    { "regex" : { "$regularExpression" : { "pattern" : "pattern", "options" : "i" } } }
    { "code" : { "$code" : "function() { return 1; }" } }
    { "code_ws" : { "$code" : "function() { return a; }", "$scope" : { "a" : 1 } } }
    { "minkey" : { "$minKey" : 1 } }
    { "maxkey" : { "$maxKey" : 1 } }
                      

    기타