- PHP 和 MongoDB 教程
- PHP 和 MongoDB - 主頁
- PHP 和 MongoDB - 概述
- PHP 和 MongoDB - 環境設定
- PHP 和 MongoDB 示例
- PHP 和 MongoDB - 連線資料庫
- PHP 和 MongoDB - 顯示資料庫
- PHP 和 MongoDB - 刪除資料庫
- PHP 和 MongoDB - 建立集合
- PHP 和 MongoDB - 刪除集合
- PHP 和 MongoDB - 顯示集合
- PHP 和 MongoDB - 插入文件
- PHP 和 MongoDB - 查詢文件
- PHP 和 MongoDB - 更新文件
- PHP 和 MongoDB - 刪除文件
- PHP 和 MongoDB - 嵌入式文件
- PHP 和 MongoDB - 錯誤處理
- PHP 和 MongoDB - 限制記錄
- PHP 和 MongoDB - 排序記錄
- PHP 和 MongoDB 有用資源
- PHP 和 MongoDB - 快速指南
- PHP 和 MongoDB - 有用資源
- PHP 和 MongoDB - 討論
PHP 和 MongoDB - 連線資料庫
執行任何操作的第一步是建立一個 Manager 例項。
// Connect to MongoDB using Manager Instance
$manager = new MongoDB\Driver\Manager("mongodb://:27017");
第二步是在資料庫上準備並執行一個命令,如果資料庫不存在,則 MongoDB 會自動建立它。
// Create a Command Instance
$statistics = new MongoDB\Driver\Command(["dbstats" => 1]);
// Execute the command on the database
$cursor = $manager->executeCommand("myDb", $statistics);
示例
嘗試以下示例連線到 MongoDB 伺服器 -
複製並貼上以下示例作為 mongodb_example.php -
<?php
try {
// connect to mongodb
$manager = new MongoDB\Driver\Manager("mongodb://:27017");
echo "Connection to database successfully";
$statistics = new MongoDB\Driver\Command(["dbstats" => 1]);
$cursor = $manager->executeCommand("myDb", $statistics);
$statistics = current($cursor->toArray());
echo "<pre>";
print_r($statistics);
echo "</pre>";
} catch (MongoDB\Driver\Exception\Exception $e) {
echo "Exception:", $e->getMessage(), "\n";
}
?>
輸出
訪問部署在 Apache Web 伺服器上的 mongodb_example.php 並驗證輸出。
Connection to database successfully stdClass Object ( [db] => myDb [collections] => 0 [views] => 0 [objects] => 0 [avgObjSize] => 0 [dataSize] => 0 [storageSize] => 0 [totalSize] => 0 [indexes] => 0 [indexSize] => 0 [scaleFactor] => 1 [fileSize] => 0 [fsUsedSize] => 0 [fsTotalSize] => 0 [ok] => 1 )
廣告