- PHP & MongoDB - Home
- PHP & MongoDB - Overview
- PHP & MongoDB - Environment Setup
- PHP & MongoDB Examples
- PHP & MongoDB - Connect Database
- PHP & MongoDB - Show Databases
- PHP & MongoDB - Drop Database
- PHP & MongoDB - Create Collection
- PHP & MongoDB - Drop Collection
- PHP & MongoDB - Display Collections
- PHP & MongoDB - Insert Document
- PHP & MongoDB - Select Document
- PHP & MongoDB - Update Document
- PHP & MongoDB - Delete Document
- PHP & MongoDB - Embedded Documents
- PHP & MongoDB - Error Handling
- PHP & MongoDB - Limiting Records
- PHP & MongoDB - Sorting Records
- PHP & MongoDB Useful Resources
- PHP & MongoDB - Quick Guide
- PHP & MongoDB - Useful Resources
- PHP & MongoDB - Discussion
PHP & MongoDB - Delete Document
First step to do any operation is to create a Manager instance.
// Connect to MongoDB using Manager Instance
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
Second step is to prepare and execute a bulkWrite object to delete record(s) in the collection.
// Create a BulkWrite Object
$bulk = new MongoDB\Driver\BulkWrite(['ordered' => true]);
$bulk->delete(['First_Name' => "Mahesh"]);
// Execute the commands.
$result = $manager->executeBulkWrite('myDb.sampleCollection', $bulk);
Example
Try the following example to delete a document of a collection in MongoDB server −
Copy and paste the following example as mongodb_example.php −
<?php
try {
$bulk = new MongoDB\Driver\BulkWrite(['ordered' => true]);
$bulk->delete(['First_Name' => "Mahesh"]);
// connect to mongodb
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");
$result = $manager->executeBulkWrite('myDb.sampleCollection', $bulk);
echo "Document deleted."
} catch (MongoDB\Driver\Exception\Exception $e) {
echo "Exception:", $e->getMessage(), "\n";
}
?>
Output
Access the mongodb_example.php deployed on apache web server and verify the output.
Document deleted.
Advertisements