- 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://127.0.0.1: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://127.0.0.1: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.
广告