- 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 - 對記錄排序
執行任何操作的第一步是建立一個管理器例項。
// Connect to MongoDB using Manager Instance
$manager = new MongoDB\Driver\Manager("mongodb://:27017");
第二步是準備和執行查詢物件,以選擇集合中的記錄並傳遞過濾器和對記錄排序的選項。
$filter = [];
// Sort in Descending Order, For ascending order pass 1
$options = ['sort' => ['First_Name' => -1]];
// Create a Query Object
$query = new MongoDB\Driver\Query($filter, $options);
// Execute the query
$rows = $manager->executeQuery("testdb.sampleCollection", $query);
示例
嘗試以下示例,限制 MongoDB 伺服器中的搜尋結果 -
將以下示例複製並貼上到 mongodb_example.php -
<?php
try {
// connect to mongodb
$manager = new MongoDB\Driver\Manager("mongodb://:27017");
$filter = [];
$options = ['limit' => 3, 'sort' => ['First_Name' => -1]];
// Create a Query Object
$query = new MongoDB\Driver\Query($filter, $options);
// Execute the query
$rows = $manager->executeQuery("myDb.sampleCollection", $query);
foreach ($rows as $row) {
printf("First Name: %s, Last Name: %s.<br/>", $row->First_Name, $row->Last_Name);
}
} catch (MongoDB\Driver\Exception\Exception $e) {
echo "Exception:", $e->getMessage(), "\n";
}
?>
輸出
訪問部署在 Apache Web 伺服器上的 mongodb_example.php,並驗證輸出結果。
First Name: Radhika, Last Name: Sharma. First Name: Rachel, Last Name: Christopher. First Name: Fathima, Last Name: Sheik.
廣告