Skip to content

Instantly share code, notes, and snippets.

@jdu
Created July 30, 2012 20:35
Show Gist options
  • Save jdu/3209947 to your computer and use it in GitHub Desktop.
Save jdu/3209947 to your computer and use it in GitHub Desktop.
Basic MongoDB access using PECL Mongo classes
<?php
// connect
$m = new Mongo();
// select a database
$db = $m->comedy;
// select a collection (analogous to a relational database's table)
$collection = $db->cartoons;
// add a record
$obj = array( "title" => "Calvin and Hobbes", "author" => "Bill Watterson" );
$collection->insert($obj);
// add another record, with a different "shape"
$obj = array( "title" => "XKCD", "online" => true );
$collection->insert($obj);
// find everything in the collection
$cursor = $collection->find();
// iterate through the results
foreach ($cursor as $obj) {
echo $obj["title"] . "\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment