SolrDisMaxQuery::addPhraseField

(No version information available, might only be in Git)

SolrDisMaxQuery::addPhraseFieldAdds a Phrase Field (pf parameter)

Description

public SolrDisMaxQuery::addPhraseField(string $field, string $boost, string $slop = ?): SolrDisMaxQuery

Adds a Phrase Field (pf parameter)

Parameters

field

field name

boost

slop

Return Values

SolrDisMaxQuery

Examples

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

See Also

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top