PHP7之Mongodb API使用詳解_php執行個體

來源:互聯網
上載者:User

編譯安裝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串連

$manager = new MongoDB/Driver/Manager("mongodb://127.0.0.1:27017"); var_dump($manager);object(MongoDB/Driver/Manager)#1 (3) { ["request_id"]=> int(1714636915) ["uri"]=> string(25) "mongodb://localhost:27017" ["cluster"]=> array(13) {  ["mode"]=>  string(6) "direct"  ["state"]=>  string(4) "born" ["request_id"]=>  int(0)  ["sockettimeoutms"]=>  int(300000)  ["last_reconnect"]=>  int(0)  ["uri"]=>  string(25) "mongodb://localhost:27017"  ["requires_auth"]=>  int(0)  ["nodes"]=>  array(...)  ["max_bson_size"]=>  int(16777216)  ["max_msg_size"]=>  int(50331648)  ["sec_latency_ms"]=>  int(15)  ["peers"]=>  array(0) {  } ["replSet"]=>  NULL }}

CURL操作

$bulk = new MongoDB/Driver/BulkWrite(['ordered' => true]);$bulk->delete([]);$bulk->insert(['_id' => 1]);$bulk->insert(['_id' => 2]);$bulk->insert(['_id' => 3, 'hello' => 'world']);$bulk->update(['_id' => 3], ['$set' => ['hello' => 'earth']]);$bulk->insert(['_id' => 4, 'hello' => 'pluto']);$bulk->update(['_id' => 4], ['$set' => ['hello' => 'moon']]);$bulk->insert(['_id' => 3]);$bulk->insert(['_id' => 4]);$bulk->insert(['_id' => 5]);$manager = new MongoDB/Driver/Manager('mongodb://localhost:27017');$writeConcern = new MongoDB/Driver/WriteConcern(MongoDB/Driver/WriteConcern::MAJORITY, 1000);try {  $result = $manager->executeBulkWrite('db.collection', $bulk, $writeConcern);} catch (MongoDB/Driver/Exception/BulkWriteException $e) {  $result = $e->getWriteResult();  // Check if the write concern could not be fulfilled  if ($writeConcernError = $result->getWriteConcernError()){printf("%s (%d): %s/n",  $writeConcernError->getMessage(),  $writeConcernError->getCode(),  var_export($writeConcernError->getInfo(), true)); }  // Check if any write operations did not complete at all  foreach ($result->getWriteErrors() as $writeError) {printf("Operation#%d: %s (%d)/n",  $writeError->getIndex(),  $writeError->getMessage(),  $writeError->getCode());  }} catch (MongoDB/Driver/Exception/Exception $e){ printf("Other error: %s/n", $e->getMessage());  exit;}printf("Inserted %d document(s)/n", $result->getInsertedCount());printf("Updated %d document(s)/n", $result->getModifiedCount());

查詢

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

以上內容是小編給大家分享的PHP7之Mongodb API使用詳解,希望大家喜歡。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.