(No version information available, might only be in Git)
SolrDisMaxQuery::addPhraseField — Adds a Phrase Field (pf parameter)
public SolrDisMaxQuery::addPhraseField ( string $field , string $boost [, string $slop ] ) : SolrDisMaxQuery
Adds a Phrase Field (pf parameter)
field
field name
boost
slop
Example #1 SolrDisMaxQuery::addPhraseField() example
<?php
$dismaxQuery = new SolrDisMaxQuery("lucene");
$dismaxQuery
->addPhraseField('cat', 3, 1)
->addPhraseField('third', 4, 2)
->addPhraseField('source', 55)
;
echo $dismaxQuery;
?> The above example will output something similar to:
q=lucene&defType=edismax&pf=cat~1^3 third~2^4 source^55
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/solrdismaxquery.addphrasefield.php