PHP Conference Japan 2024

MongoDB\BSON\Decimal128::__construct

(mongodb >=1.2.0)

MongoDB\BSON\Decimal128::__construct构造一个新的 Decimal128

描述

final public MongoDB\BSON\Decimal128::__construct(string $value)

注意: MongoDB\BSON\Decimal128 仅与 MongoDB 3.4+ 兼容。尝试将 BSON 类型与早期版本的 MongoDB 一起使用将导致错误。

参数

value (string)

十进制字符串。

错误/异常

示例

示例 #1 MongoDB\BSON\Decimal128::__construct() 示例

<?php

var_dump
(new MongoDB\BSON\Decimal128(1234.5678));
var_dump(new MongoDB\BSON\Decimal128(NAN));
var_dump(new MongoDB\BSON\Decimal128(INF));

?>

以上示例将输出类似以下内容

object(MongoDB\BSON\Decimal128)#1 (1) {
  ["dec"]=>
  string(9) "1234.5678"
}
object(MongoDB\BSON\Decimal128)#1 (1) {
  ["dec"]=>
  string(3) "NaN"
}
object(MongoDB\BSON\Decimal128)#1 (1) {
  ["dec"]=>
  string(8) "Infinity"
}
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top