Php Mongodb 简明教程
PHP & MongoDB - Insert Document
执行任何操作的第一步是创建一个管理器实例。
// Connect to MongoDB using Manager Instance
$manager = new MongoDB\Driver\Manager("mongodb://localhost: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);
Example
尝试以下示例,以在 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://localhost: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";
}
?>