PHP7之Mongodb API使用詳解
編譯安裝PHP7
編譯安裝PHP7 Mongdb擴(kuò)展
#先安裝一個(gè)依賴(lài)庫(kù)yum -y install openldap-develwget https://pecl.php.net/get/mongodb-1.1.1.tgz /home/server/php7/bin/phpize #根據(jù)自己編譯的PHP環(huán)境而定./configure --with-php-config=/home/server/php7/bin/php-config make && make install#如果成功,生成一個(gè)mongodb.so擴(kuò)展在lib/php/extensions/no-debug-non-zts-20151012/修改php.ini配置extension=mongodb.so
注:
以前版本用的是mongo.so擴(kuò)展,老的php-mongodb api
在PHP7已經(jīng)不支持了,至少目前不支持。
最新支持PHP7的mongodb 編譯后 僅支持新版API(mongodb > 2.6.X版本)
參考資料
GITHUB: https://github.com/mongodb/
官網(wǎng):
PHP官方: https://pecl.php.net/package/mongodb http://pecl.php.net/package/mongo [已廢棄,目前只支持到PHP5.9999]
API手冊(cè):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());
查詢(xún)
$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);}
以上內(nèi)容是小編給大家分享的PHP7之Mongodb API使用詳解,希望大家喜歡。
相關(guān)文章
匹配csdn用戶(hù)數(shù)據(jù)庫(kù)與官方用戶(hù)的重合度并將重疊部分的用戶(hù)篩選出來(lái)
CSDN用戶(hù)數(shù)據(jù)泄漏導(dǎo)致官方用戶(hù)的安全受到了嚴(yán)重的威脅,故希望能把兩個(gè)站的用戶(hù)數(shù)據(jù)做個(gè)對(duì)比,把其中重疊部分的用戶(hù)篩選出來(lái),并通知相應(yīng)用戶(hù)及時(shí)修改密碼,確保風(fēng)險(xiǎn)將至最低2011-12-12phpfans留言版用到的數(shù)據(jù)操作類(lèi)和分頁(yè)類(lèi)
phpfans留言版用到的數(shù)據(jù)操作類(lèi)和分頁(yè)類(lèi)...2007-01-01codeigniter數(shù)據(jù)庫(kù)操作函數(shù)匯總
網(wǎng)上倒是有不少Codeigniter數(shù)據(jù)庫(kù)操作的介紹,這里做一個(gè)匯總,需要的朋友可以參考下2014-06-06php實(shí)現(xiàn)微信公眾平臺(tái)發(fā)紅包功能
這篇文章主要為大家詳細(xì)介紹了php實(shí)現(xiàn)微信公眾平臺(tái)發(fā)紅包功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-06-06Laravel使用消息隊(duì)列需要注意的一些問(wèn)題
這篇文章主要給大家介紹了關(guān)于Laravel使用消息隊(duì)列需要注意的一些問(wèn)題,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起看看吧。2017-12-12