本文整理汇总了PHP中SphinxClient::resetFilters方法的典型用法代码示例。如果您正苦于以下问题:PHP SphinxClient::resetFilters方法的具体用法?PHP SphinxClient::resetFilters怎么用?PHP SphinxClient::resetFilters使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SphinxClient
的用法示例。
在下文中一共展示了SphinxClient::resetFilters方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: resetClient
/**
* Reset settings sphinx
*/
public function resetClient()
{
$this->_client->resetFilters();
$this->_client->resetGroupBy();
$this->_client->setArrayResult(false);
//DEPRECATED: Do not call this method or, even better, use SphinxQL instead of an API
//$this->_client->setMatchMode(SPH_MATCH_EXTENDED2);
$this->_client->setLimits(0, 20, 1000, 0);
$this->_client->setFieldWeights(array());
$this->_client->setSortMode(SPH_SORT_RELEVANCE, '');
$this->_client->_error = '';
$this->_client->_warning = '';
}
示例2: resetFilters
/**
* Reset all previously set filters.
*/
public function resetFilters()
{
$this->sphinx->resetFilters();
}
示例3: bindToSphinx
/**
* Adds this query to the SphinxClient $sphinx
*
* Adding the query resets the passed SphinxClient so that no existing
* filters or group bys or sort order etc are inherited by this query.
* The query details are then injected into Sphinx, and the resulting
* id passed back to this query allowing the results to be mapped to
* the query.
*
* @param \SphinxClient $sphinx
*
* @return $this
*/
public function bindToSphinx(\SphinxClient $sphinx)
{
$sphinx->resetFilters();
$sphinx->resetGroupBy();
$sphinx->setRankingMode($this->rankingMode);
if ($this->groupBy instanceof GroupBy) {
$this->groupBy->bindToSphinx($sphinx);
}
$this->sortBy->bindToSphinx($sphinx);
$this->limits->bindToSphinx($sphinx);
/* @var FilterInterface $filter */
foreach ($this->filters as $filter) {
$filter->bindToSphinx($sphinx);
}
if ($this->builder instanceof Builder && !$this->query) {
$this->query = $this->builder->getQuery();
}
$this->id = $sphinx->addQuery($this->query, $this->index->getIndexName());
return $this;
}
示例4: resetCriteria
/**
* @brief reset search criteria to default
* @details reset conditions and set default search options
*/
public function resetCriteria()
{
if (is_object($this->criteria)) {
$this->lastCriteria = clone $this->criteria;
} else {
$this->lastCriteria = new stdClass();
}
$this->criteria = new stdClass();
$this->criteria->query = '';
$this->client->resetFilters();
$this->client->resetGroupBy();
$this->client->setArrayResult(false);
$this->client->setMatchMode($this->matchMode);
// $this->client->setRankingMode($this->rankMode);
$this->client->setSortMode(SPH_SORT_RELEVANCE, '@relevance DESC');
$this->client->setLimits(0, 1000000, 10000);
if (!empty($this->fieldWeights)) {
$this->client->setFieldWeights($this->fieldWeights);
}
}