0

我正在使用 mongodb 2.4 并将全文索引添加到集合中的“标题”字段中。我应该如何使用 php 在该字段中搜索内容?

这是我现在使用的代码:

$params = array(
        '_id' => array(
            '$gt' => (int)$gt
        )
    );
$r = $this->collection->find( $params )->limit($limit);
4

1 回答 1

1

这似乎是我的问题的答案:

<?php
$result = $db->command(
    array(
        'text' => 'bar', //this is the name of the collection where we are searching
        'search' => 'hotel', //the string to search
        'limit' => 5, //the number of results, by default is 1000
        'project' => Array( //the fields to retrieve from db
            'title' => 1
        )
    )
);

http://www.php.net/manual/en/mongodb.command.php#111891

于 2013-04-18T10:05:31.910 回答