MongoDB 教學課程login
MongoDB 教學課程
作者:php.cn  更新時間:2022-04-21 17:49:03

MongDB PHP7


PHP7 MongDB 安裝與使用

本文教學只適合在 PHP7 的環境,如果你是 PH​​P5 環境,你可以參考 PHP MongDB 安裝與使用

PHP7 Mongdb 擴充安裝

我們使用pecl 指令來安裝:

$ /usr/local/php7/bin/pecl install mongodb

執行成功後,會輸出以下結果:

……
Build process completed successfully
Installing '/usr/local/php7/lib/php/extensions/no-debug-non-zts-20151012/mongodb.so'
install ok: channel://pecl.php.net/mongodb-1.1.7
configuration option "php_ini" is not set to php.ini location
You should add "extension=mongodb.so" to php.ini

接下來我們打開php.ini 文件,新增extension=mongodb.so 設定。

可以直接執行以下命令來新增。

$ echo "extension=mongodb.so" >> `/usr/local/php7/bin/php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`

注意:以上執行的指令中php7 的安裝目錄為/usr/local/php7/,如果你安裝在其他目錄,需要對應修改pecl 與php 指令的路徑。


Mongodb 使用

PHP7 連接MongoDB 語法如下:

$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");

插入資料

將name 為"php中文網" 的資料插入到test 資料庫的php 集合中。

<?php
$bulk = new MongoDB\Driver\BulkWrite;
$document = ['_id' => new MongoDB\BSON\ObjectID, 'name' => 'php中文网'];

$_id= $bulk->insert($document);

var_dump($_id);

$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");  
$writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000);
$result = $manager->executeBulkWrite('test.php', $bulk, $writeConcern);
?>

讀取資料

這裡我們將三個網址資料插入到test 資料庫的 sites 集合,並且讀取迭代出來:

<?php
$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");  

// 插入数据
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert(['x' => 1, 'name'=>'php中文网', 'url' => 'http://www.php.cn']);
$bulk->insert(['x' => 2, 'name'=>'Google', 'url' => 'http://www.google.com']);
$bulk->insert(['x' => 3, 'name'=>'taobao', 'url' => 'http://www.taobao.com']);
$manager->executeBulkWrite('test.sites', $bulk);

$filter = ['x' => ['$gt' => 1]];
$options = [
    'projection' => ['_id' => 0],
    'sort' => ['x' => -1],
];

// 查询数据
$query = new MongoDB\Driver\Query($filter, $options);
$cursor = $manager->executeQuery('test.sites', $query);

foreach ($cursor as $document) {
    print_r($document);
}
?>

輸出結果為:

stdClass Object
(
    [x] => 3
    [name] => taobao
    [url] => http://www.taobao.com
)
stdClass Object
(
    [x] => 2
    [name] => Google
    [url] => http://www.google.com
)

更新資料

接下來我們將更新test 資料庫sites 集合中x 為2 的資料:

<?php
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->update(
    ['x' => 2],
    ['$set' => ['name' => 'php工具', 'url' => 'tool.php.cn']],
    ['multi' => false, 'upsert' => false]
);

$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");  
$writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000);
$result = $manager->executeBulkWrite('test.sites', $bulk, $writeConcern);
?>

接下來我們使用"db.sites.find()" 指令查看資料的變化,x 為2 的資料已經變成了php工具:

#刪除資料

#以下實例刪除了x 為1 和x 為2的數據,注意limit 參數的差異:

<?php
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->delete(['x' => 1], ['limit' => 1]);   // limit 为 1 时,删除第一条匹配数据
$bulk->delete(['x' => 2], ['limit' => 0]);   // limit 为 0 时,删除所有匹配数据

$manager = new MongoDB\Driver\Manager("mongodb://localhost:27017");  
$writeConcern = new MongoDB\Driver\WriteConcern(MongoDB\Driver\WriteConcern::MAJORITY, 1000);
$result = $manager->executeBulkWrite('test.sites', $bulk, $writeConcern);
?>

更多使用方法請參考:http://php.net/manual/en/book.mongodb.php

#

PHP中文網