当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP7之Mongodb API使用详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-02 10:40:02 浏览: 评论:0 

这篇文章主要介绍了PHP7之Mongodb API使用详解的相关资料,需要的朋友可以参考下。

编译安装PHP7

编译安装PHP7 Mongdb扩展

#先安装一个依赖库yum -y install openldap-develwget https://pecl.php.net/get/mongodb-1.1.1.tgz /home/server/php7/bin/phpize   #根据自己编译的PHP环境而定./configure --with-php-config=/home/server/php7/bin/php-config make && make install#如果成功,生成一个mongodb.so扩展在lib/php/extensions/no-debug-non-zts-20151012/修改php.ini配置extension=mongodb.so

注:以前版本用的是mongo.so扩展,老的php-mongodb api

在PHP7已经不支持了,至少目前不支持。

最新支持PHP7的mongodb 编译后 仅支持新版API(mongodb > 2.6.X版本)

参考资料

GITHUB: https://github.com/mongodb/

官网:

http://www.mongodb.org/

PHP官方: https://pecl.php.net/package/mongodb http://pecl.php.net/package/mongo [已废弃,目前只支持到PHP5.9999]

API手册:http://docs.php.net/manual/en/set.mongodb.php

Mongodb API 操作

初始化Mongodb连接

  1. $manager = new MongoDB/Driver/Manager("mongodb://127.0.0.1:27017"); var_dump($manager); 
  2. object(MongoDB/Driver/Manager)#1 (3)  
  3. {  
  4. ["request_id"]=> int(1714636915)  
  5. ["uri"]=> string(25) "mongodb://localhost:27017" 
  6. ["cluster"]=> array(13) {   
  7. ["mode"]=>  string(6) "direct"  
  8. ["state"]=>  string(4) "born" 
  9. ["request_id"]=>   
  10. int(0)   
  11. ["sockettimeoutms"]=>   
  12. int(300000)   
  13. ["last_reconnect"]=>   
  14. int(0)   
  15. ["uri"]=>   
  16. string(25) "mongodb://localhost:27017"  
  17. ["requires_auth"]=>   
  18. int(0)   
  19. ["nodes"]=>   
  20. array(...)   
  21. ["max_bson_size"]=>   
  22. int(16777216)   
  23. ["max_msg_size"]=>   
  24. int(50331648)   
  25. ["sec_latency_ms"]=>   
  26. int(15)   
  27. ["peers"]=>   
  28. array(0) {   
  29. }  
  30. ["replSet"]=>   
  31. NULL  
  32. }} 

CURL操作

  1. $bulk = new MongoDB/Driver/BulkWrite(['ordered' => true]);$bulk->delete([]); 
  2. $bulk->insert(['_id' => 1]); 
  3. $bulk->insert(['_id' => 2]); 
  4. $bulk->insert(['_id' => 3,  
  5. 'hello' => 'world']);$bulk->update(['_id' => 3],  
  6. ['$set' => ['hello' => 'earth']]); 
  7. $bulk->insert(['_id' => 4, 'hello' => 'pluto']); 
  8. $bulk->update(['_id' => 4], ['$set' => ['hello' => 'moon']]); 
  9. $bulk->insert(['_id' => 3]); 
  10. $bulk->insert(['_id' => 4]); 
  11. $bulk->insert(['_id' => 5]); 
  12. $manager = new MongoDB/Driver/Manager('mongodb://localhost:27017'); 
  13. $writeConcern = new MongoDB/Driver/WriteConcern(MongoDB/Driver/WriteConcern::MAJORITY, 1000); 
  14. try {   
  15. $result = $manager->executeBulkWrite('db.collection'$bulk$writeConcern); 
  16. }  
  17. catch (MongoDB/Driver/Exception/BulkWriteException $e)  
  18. {   
  19. $result = $e->getWriteResult();   
  20. // Check if the write concern could not be fulfilled   
  21. if ($writeConcernError = $result->getWriteConcernError()) 
  22. {printf("%s (%d): %s/n",   
  23. $writeConcernError->getMessage(),   
  24. $writeConcernError->getCode(),   
  25. var_export($writeConcernError->getInfo(), true));  
  26. }   
  27. // Check if any write operations did not complete at all   
  28. foreach ($result->getWriteErrors() as $writeError) {printf("Operation#%d: %s (%d)/n",   
  29. $writeError->getIndex(),   
  30. $writeError->getMessage(),   
  31. $writeError->getCode());   
  32. }} catch (MongoDB/Driver/Exception/Exception $e
  33. {  
  34. printf("Other error: %s/n"$e->getMessage());   
  35. exit;}printf("Inserted %d document(s)/n"$result->getInsertedCount()); 
  36. printf("Updated %d document(s)/n"$result->getModifiedCount()); 

查询

  1. $filter = array();$options = array(   
  2. /* Only return the following fields in the matching documents */  
  3. "projection" => array("title" => 1,"article" => 1,  ),   
  4. "sort" => array("views" => -1,  ),  "modifiers" => array('$comment'  => "This is a query comment",'$maxTimeMS' => 100,   
  5. ),);$query = new MongoDB/Driver/Query($filter$options);$manager = new MongoDB/Driver/Manager("mongodb://localhost:27017"); 
  6. $readPreference = new MongoDB/Driver/ReadPreference(MongoDB/Driver/ReadPreference::RP_PRIMARY);$cursor = $manager->executeQuery("databaseName.collectionName"$query$readPreference); 
  7. foreach($cursor as $document)  
  8. {  
  9. var_dump($document);} 

以上内容是小编给大家分享的PHP7之Mongodb API使用详解,希望大家喜欢。

Tags: Mongodb PHP7

分享到: