mongo-php-driver是MongoDB御用的PHP驱动包。
示例代码:
<?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 resultsforeach ($cursor as $obj) { echo $obj["title"] . "\n";}?>
评论