- 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://127.0.0.1:27017");
第二步是准备一个 bulkWrite 对象并在集合中执行该对象以插入记录。
// Create a BulkWrite Object $bulk = new MongoDB\Driver\BulkWrite(['ordered' => true]); $bulk->insert(['First_Name' => "Mahesh", 'Last_Name' => 'Parashar', 'Date_Of_Birth' => '1990-08-21', 'e_mail' => '[email protected]', 'phone' => '9034343345']); // Execute the commands. $result = $manager->executeBulkWrite('myDb.sampleCollection', $bulk);
示例
尝试以下示例在 MongoDB 服务器中向集合中插入文档 −
复制并粘贴以下示例作为 mongodb_example.php −
<?php try { $bulk = new MongoDB\Driver\BulkWrite(['ordered' => true]); $bulk->insert(['First_Name' => "Mahesh", 'Last_Name' => 'Parashar', 'Date_Of_Birth' => '1990-08-21', 'e_mail' => '[email protected]', 'phone' => '9034343345']); $bulk->insert(['First_Name' => "Radhika", 'Last_Name' => 'Sharma', 'Date_Of_Birth' => '1995-09-26', 'e_mail' => '[email protected]', 'phone' => '9000012345']); $bulk->insert(['First_Name' => "Rachel", 'Last_Name' => 'Christopher', 'Date_Of_Birth' => '1990-02-16', 'e_mail' => '[email protected]', 'phone' => '9000054321']); $bulk->insert(['First_Name' => "Fathima", 'Last_Name' => 'Sheik', 'Date_Of_Birth' => '1990-02-16', 'e_mail' => '[email protected]', 'phone' => '9000012345']); // connect to mongodb $manager = new MongoDB\Driver\Manager("mongodb://127.0.0.1:27017"); $result = $manager->executeBulkWrite('myDb.sampleCollection', $bulk); printf("Inserted %d document(s).\n", $result->getInsertedCount()); } catch (MongoDB\Driver\Exception\Exception $e) { echo "Exception:", $e->getMessage(), "\n"; } ?>
输出
访问部署在 apache Web 服务器上的 mongodb_example.php 并确认输出。
Inserted 4 document(s).
广告