SolrParams::addParam
(PECL solr >= 0.9.2)
SolrParams::addParam — Adds a parameter to the object
Описание
Adds a parameter to the object. This is used for parameters that can be specified multiple times.
Список параметров
-
name
-
Name of parameter
-
value
-
Value of parameter
Возвращаемые значения
Returns a SolrParam object on success and FALSE
on failure.
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для работы с поисковыми системами
- Apache Solr
- Функция SolrParams::add() - This is an alias for SolrParams::addParam
- Функция SolrParams::addParam() - Adds a parameter to the object
- Функция SolrParams::get() - This is an alias for SolrParams::getParam
- Функция SolrParams::getParam() - Returns a parameter value
- Функция SolrParams::getParams() - Returns an array of non URL-encoded parameters
- Функция SolrParams::getPreparedParams() - Returns an array of URL-encoded parameters
- Функция SolrParams::serialize() - Used for custom serialization
- Функция SolrParams::set() - An alias of SolrParams::setParam
- Функция SolrParams::setParam() - Sets the parameter to the specified value
- Функция SolrParams::toString() - Returns all the name-value pair parameters in the object
- Функция SolrParams::unserialize() - Used for custom serialization
Коментарии
great for adding unintended parameters in other functions like facet.contains
?php
$facet = 'title' ;
$str='isto';
$query = new SolrQuery($filter);
$query->setFacet(true)->setShowDebugInfo(true);
$query->addFacetField($facet)->setFacetMinCount(1)->setFacetLimit(200)->setfacetsort(SolrQuery::TERMS_SORT_INDEX);
$query->addparam('facet.contains',$str) ;
?>
// result of $query->getparams() //check the lastone
array(8) {
["q"]=> array(1) {
[0]=> string(20) "collection_id_str:61"
}
["facet"]=> array(1) {
[0]=> string(4) "true"
}
["debugQuery"]=> array(1) {
[0]=> string(4) "true"
}
["facet.field"]=> array(1) {
[0]=> string(11) "440a_str_mv"
}
["facet.mincount"]=> array(1) {
[0]=> string(1) "1"
}
["facet.limit"]=> array(1) {
[0]=> string(3) "200"
}
["facet.sort"]=> array(1) {
[0]=> string(5) "index"
}
["facet.contains"]=> array(1) {
[0]=> string(4) "isto"
}
}