首頁 php教程 PHP开发 PHP7之Mongodb API使用詳解

PHP7之Mongodb API使用詳解

Dec 23, 2016 am 09:26 AM

編譯安裝PHP7

編譯安裝PHP7 Mongdb擴充功能

#先安裝一個依賴函式庫yum -y install openldap-develwget https://pecl.php.net/get/mongodb-1.1.1.tgz home/://pecl.php.net/get/mongodb-1.1.1.tgzserver/home/ /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/

官網:

官網:

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
}}
登入後複製

   

$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());
登入後複製

   

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

更多PHP7之Mongodb API使用詳解相關文章請關注PHP中文網!

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

<🎜>:泡泡膠模擬器無窮大 - 如何獲取和使用皇家鑰匙
3 週前 By 尊渡假赌尊渡假赌尊渡假赌
北端:融合系統,解釋
3 週前 By 尊渡假赌尊渡假赌尊渡假赌
Mandragora:巫婆樹的耳語 - 如何解鎖抓鉤
3 週前 By 尊渡假赌尊渡假赌尊渡假赌

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

熱門話題

Java教學
1666
14
CakePHP 教程
1425
52
Laravel 教程
1325
25
PHP教程
1273
29
C# 教程
1252
24