SolrParams::addParam
(PECL solr >= 0.9.2)
SolrParams::addParam — オブジェクトにパラメータを追加
説明
オブジェクトにパラメータを追加します。 これは、複数回指定されることのあるパラメータで使われます。
パラメータ
name
-
パラメータ名
value
-
パラメータ値
戻り値
成功時に SolrParam オブジェクト、失敗時に false
を返します。
+add a note
User Contributed Notes 1 note
horaciod at gmail dot com ¶
1 year ago
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"
}
}
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google