SolrDisMaxQuery::removePhraseField

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

SolrDisMaxQuery::removePhraseFieldRemoves a Phrase Field (pf parameter)

Descrição

public SolrDisMaxQuery::removePhraseField(string $field): SolrDisMaxQuery

Removes a Phrase Field (pf parameter) that was previously added using SolrDisMaxQuery::addPhraseField

Parâmetros

field

Field Name

Valor Retornado

SolrDisMaxQuery

Exemplos

Exemplo #1 SolrDisMaxQuery::removePhraseField() example

<?php
$dismaxQuery
= new SolrDisMaxQuery('lucene');
$dismaxQuery
->addPhraseField('first', 3, 1)
->
addPhraseField('second', 4, 1)
->
addPhraseField('cat', 55);
echo
$dismaxQuery . PHP_EOL;
echo
$dismaxQuery->removePhraseField('second');
?>

O exemplo acima produzirá algo semelhante a:

q=lucene&defType=edismax&pf=first~1^3 second~1^4 cat^55
q=lucene&defType=edismax&pf=first~1^3 cat^55

Veja Também

add a note add a note

User Contributed Notes

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