php怎样使用momgodb事务
程序员文章站
2022-03-13 23:14:14
...
MongoDB的操作一直是通过mongo客户端进程,进行的操作。但是现实中,我们对MOngoDB数据的操作,往往是通过相应的程序实现的,如php、java或是Python等。那么怎样在php中操作MongoDB呢?
在PHP中配置MongoDB
在php.ini中配置MongoDB相当简单,只需要添加如下代码即可
extension=php_mongo.dll
主要注意的是php_mongo.dll版本必须和当前php版本想对应。否则会出现不兼容错误。(推荐学习:PHP视频教程)
关于php_mongo.dll下载可以到http://pecl.php.net/package/mongo 上下载。里面提供了很多版本可供选择。
在PHP中连接MongoDB
首先得开启MongoDB服务
我们都知道,在php中连接Mysql数据库,我们可以使用Mysqli或者Pdo类,那么连接MongoDB是否也有相应的类呢?答案是肯定得。这个类就是MongoClient。它是PHP 和 MongoDB 的连接管理器,负责于创建和管理连接。类的结构如下:
MongoClient { /* 常量 */ const string VERSION ; const string DEFAULT_HOST = "localhost" ; const int DEFAULT_PORT = 27017 ; const string RP_PRIMARY = "primary" ; const string RP_PRIMARY_PREFERRED = "primaryPreferred" ; const string RP_SECONDARY = "secondary" ; const string RP_SECONDARY_PREFERRED = "secondaryPreferred" ; const string RP_NEAREST = "nearest" ; /* 属性 */ public boolean $connected = FALSE ; public string $status = NULL ; protected string $server = NULL ; protected boolean $persistent = NULL ; /* 方法 */ public __construct ([ string $server = "mongodb://localhost:27017" [, array $options = array("connect" => TRUE) ]] ) public bool close ([ boolean|string $connection ] ) public bool connect ( void ) public array dropDB ( mixed $db ) public MongoDB __get ( string $dbname ) public static array getConnections ( void ) public array getHosts ( void ) public array getReadPreference ( void ) public array getWriteConcern ( void ) public bool killCursor ( string $server_hash , int|MongoInt64 $id ) public array listDBs ( void ) public MongoCollection selectCollection ( string $db , string $collection ) public MongoDB selectDB ( string $name ) public bool setReadPreference ( string $read_preference [, array $tags ] ) public bool setWriteConcern ( mixed $w [, int $wtimeout ] ) public string __toString ( void ) }
在PHP中查询MongoDB数据
在PHP的MongoDB扩展模块中,提供了MongoCollection来进行数据的CURD操作。
以上就是php怎样使用momgodb事务的详细内容,更多请关注其它相关文章!
上一篇: PHP数据如何向上取整
下一篇: css中的流体布局是什么