MongoDB\Driver\ServerApi::__construct

(mongodb >=1.10.0)

MongoDB\Driver\ServerApi::__construct创建一个新的 ServerApi 实例

描述

final public MongoDB\Driver\ServerApi::__construct(string $version, ?bool $strict = null, ?bool $deprecationErrors = null)

创建一个新的 MongoDB\Driver\ServerApi 实例,用于在创建 MongoDB\Driver\Manager 时声明 API 版本。

参数

版本

服务器 API 版本。

支持的 API 版本在 MongoDB\Driver\ServerApi 中作为常量提供。唯一支持的 API 版本是 MongoDB\Driver\ServerApi::V1

严格

如果 strict 参数设置为 true,服务器将对任何不属于指定 API 版本的命令产生错误。如果没有提供值,则使用服务器默认值 (false)。

弃用错误

如果 deprecationErrors 参数设置为 true,服务器将在使用指定 API 版本中已弃用的命令时产生错误。如果没有提供值,则使用服务器默认值 (false)。

添加说明

用户贡献的说明

此页面没有用户贡献的说明。
To Top