(mongodb >=1.10.0)
MongoDB\Driver\ServerApi::V1
服务器 API 版本 1。
示例 #1 在管理器上声明 API 版本
<?php
use MongoDB\Driver\Manager;
use MongoDB\Driver\ServerApi;
$v1 = new ServerApi(ServerApi::v1);
$manager = new Manager('mongodb://localhost:27017', [], ['serverApi' => $v1]);
$command = new MongoDB\Driver\Command(['buildInfo' => 1]);
try {
$cursor = $manager->executeCommand('admin', $command);
} catch(MongoDB\Driver\Exception $e) {
echo $e->getMessage(), "\n";
exit;
}
/* buildInfo 命令返回单个结果文档,因此我们需要访问
* 游标中的第一个结果。 */
$buildInfo = $cursor->toArray()[0];
echo $buildInfo->version, "\n";
?>
上面的示例将输出
4.9.0-alpha7-49-gb968ca0
示例 #2 在管理器上声明严格的 API 版本
以下示例设置 strict
标志,它告诉服务器拒绝任何不属于声明的 API 版本的命令。这会导致在运行 buildInfo 命令时出现错误。
<?php
use MongoDB\Driver\Manager;
use MongoDB\Driver\ServerApi;
$v1 = new ServerApi(ServerApi::v1, true);
$manager = new Manager('mongodb://localhost:27017', [], ['serverApi' => $v1]);
$command = new MongoDB\Driver\Command(['buildInfo' => 1]);
try {
$cursor = $manager->executeCommand('admin', $command);
} catch(MongoDB\Driver\Exception $e) {
echo $e->getMessage(), "\n";
exit;
}
/* buildInfo 命令返回单个结果文档,因此我们需要访问
* 游标中的第一个结果。 */
$buildInfo = $cursor->toArray()[0];
echo $buildInfo->version, "\n";
?>
上面的示例将输出
Provided apiStrict:true, but the command buildInfo is not in API Version 1