MongoDB\BSON\PackedArray::toRelaxedExtendedJSON

(mongodb >=1.20.0)

MongoDB\BSON\PackedArray::toRelaxedExtendedJSONReturns the Relaxed Extended JSON representation of the BSON array

说明

final public MongoDB\BSON\PackedArray::toRelaxedExtendedJSON(): string

Converts the BSON array to its » Relaxed Extended JSON representation. The relaxed format prefers use of JSON type primitives at the expense of type fidelity and is most suited for producing output that can be easily consumed by web APIs and humans.

参数

此函数没有参数。

返回值

Returns a string containing the » Relaxed Extended JSON representation of the BSON array.

示例

示例 #1 MongoDB\BSON\PackedArray::toRelaxedExtendedJSON() example

<?php

$array
= [
'foo',
123,
4294967295,
new
MongoDB\BSON\ObjectId('56315a7c6118fd1b920270b1'),
];

$packedArray = MongoDB\BSON\PackedArray::fromPHP($array);
echo
$packedArray->toRelaxedExtendedJSON(), "\n";

?>

以上示例会输出:

[ "foo", 123, 4294967295, { "$oid" : "56315a7c6118fd1b920270b1" } ]

参见

添加备注

用户贡献的备注

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