mongo-php-driver

程序名称:mongo-php-driver

授权协议: Apache

操作系统: 跨平台

开发语言: PHP

mongo-php-driver 介绍

mongo-php-driver 是 MongoDB 御用的 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”;
}

?>

mongo-php-driver 官网

https://github.com/mongodb/mongo-php-driver

相关编程语言

SchemaCrawler提供一组用于增强标准JDBC Metadata的...
ER Master 是一个用于设计ER模型图的Eclipse插件。提...
Eclipse下用于画数据库ER图的插件,主要特性如下: ...
PowerDesigner 是Sybase的企业建模和设计解决方案,...
Mogwai ERDesigner NG是一个实体关系建模工具类似于...
Power*Architect 是一个数据建模工具,主要用在数据...