
- 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://: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' => 'mahesh_parashar.123@gmail.com', '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' => 'mahesh_parashar.123@gmail.com', 'phone' => '9034343345']); $bulk->insert(['First_Name' => "Radhika", 'Last_Name' => 'Sharma', 'Date_Of_Birth' => '1995-09-26', 'e_mail' => 'radhika_sharma.123@gmail.com', 'phone' => '9000012345']); $bulk->insert(['First_Name' => "Rachel", 'Last_Name' => 'Christopher', 'Date_Of_Birth' => '1990-02-16', 'e_mail' => 'rachel_christopher.123@gmail.com', 'phone' => '9000054321']); $bulk->insert(['First_Name' => "Fathima", 'Last_Name' => 'Sheik', 'Date_Of_Birth' => '1990-02-16', 'e_mail' => 'fathima_sheik.123@gmail.com', 'phone' => '9000012345']); // connect to mongodb $manager = new MongoDB\Driver\Manager("mongodb://: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).
廣告