- PHP 和 MongoDB 教程
- PHP 和 MongoDB - 主页
- PHP 和 MongoDB - 概述
- PHP 和 MongoDB - 环境设置
- PHP 和 MongoDB 示例
- PHP 和 MongoDB - 连接数据库
- PHP 和 MongoDB - 显示数据库
- PHP 和 MongoDB - 删除数据库
- PHP 和 MongoDB - 创建集合
- PHP 和 MongoDB - 删除集合
- PHP 和 MongoDB - 显示集合
- PHP 和 MongoDB - 插入文档
- PHP 和 MongoDB - 选择文档
- PHP 和 MongoDB - 更新文档
- PHP 和 MongoDB - 删除文档
- PHP 和 MongoDB - 嵌入式文档
- PHP 和 MongoDB - 错误处理
- PHP 和 MongoDB - 限制记录
- PHP 和 MongoDB - 记录排序
- PHP 和 MongoDB 有用资源
- PHP 和 MongoDB - 快速指南
- PHP 和 MongoDB - 有用的资源
- PHP 和 MongoDB - 讨论
PHP 和 MongoDB - 连接数据库
执行任何操作的第一步是创建一个 Manager 实例。
// Connect to MongoDB using Manager Instance $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
第二步是在数据库上准备并执行命令,如果数据库不存在,MongoDB 会自动创建它。
// Create a Command Instance $statistics = new MongoDB\Driver\Command(["dbstats" => 1]); // Execute the command on the database $cursor = $manager->executeCommand("myDb", $statistics);
例子
尝试以下示例连接到 MongoDB 服务器 -
将以下示例复制并粘贴为 mongodb_example.php -
<?php try { // connect to mongodb $manager = new MongoDB\Driver\Manager("mongodb://localhost:27017"); echo "Connection to database successfully"; $statistics = new MongoDB\Driver\Command(["dbstats" => 1]); $cursor = $manager->executeCommand("myDb", $statistics); $statistics = current($cursor->toArray()); echo "<pre>"; print_r($statistics); echo "</pre>"; } catch (MongoDB\Driver\Exception\Exception $e) { echo "Exception:", $e->getMessage(), "\n"; } ?>
输出
访问部署在 apache Web 服务器上的 mongodb_example.php 并验证输出。
Connection to database successfully stdClass Object ( [db] => myDb [collections] => 0 [views] => 0 [objects] => 0 [avgObjSize] => 0 [dataSize] => 0 [storageSize] => 0 [totalSize] => 0 [indexes] => 0 [indexSize] => 0 [scaleFactor] => 1 [fileSize] => 0 [fsUsedSize] => 0 [fsTotalSize] => 0 [ok] => 1 )