MongoDB\Driver\ServerApi::__construct
(mongodb >=1.10.0)
MongoDB\Driver\ServerApi::__construct — Create a new ServerApi instance
说明
$version, ?bool $strict = null, ?bool $deprecationErrors = null)Creates a new MongoDB\Driver\ServerApi instance used to declare an API version when creating a MongoDB\Driver\Manager.
参数
version- 
     
A server API version.
Supported API versions are provided as constants in MongoDB\Driver\ServerApi. The only supported API version is
MongoDB\Driver\ServerApi::V1. strict- 
     
If the
strictparameter is set totrue, the server will yield an error for any command that is not part of the specified API version. If no value is provided, the server default value (false) is used. deprecationErrors- 
     
If the
deprecationErrorsparameter is set totrue, the server will yield an error when using a command that is deprecated in the specified API version. If no value is provided, the server default value (false) is used. 
用户贡献的备注
备份地址:http://www.lvesu.com/blog/php/mongodb-driver-serverapi.construct.php