- 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 - 创建集合
执行任何操作的第一步是创建一个管理器实例。
// Connect to MongoDB using Manager Instance $manager = new MongoDB\Driver\Manager("mongodb://127.0.0.1:27017");
第二步是准备并执行一条创建集合的命令。
// Create a Command Instance $createCollection = new MongoDB\Driver\Command(["create" => "sampleCollection"]); // Execute the command on the database $cursor = $manager->executeCommand("myDb", $createCollection);
示例
尝试以下示例在 MongoDB 服务器上创建一个集合 −
复制并粘贴以下示例,作为 mongodb_example.php −
<?php try { // connect to mongodb $manager = new MongoDB\Driver\Manager("mongodb://127.0.0.1:27017"); // Create a Command Instance $createCollection = new MongoDB\Driver\Command(["create" => "sampleCollection"]); // Execute the command on the database $cursor = $manager->executeCommand("myDb", $createCollection); echo "Collection created."; } catch (MongoDB\Driver\Exception\Exception $e) { echo "Exception:", $e->getMessage(), "\n"; } ?>
输出
访问在 Apache Web 服务器上部署的 mongodb_example.php 并验证输出。
Collection created.
广告