SolrDisMaxQuery::removePhraseField

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

SolrDisMaxQuery::removePhraseFieldRemoves a Phrase Field (pf parameter)

설명

public SolrDisMaxQuery SolrDisMaxQuery::removePhraseField ( string $field )

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

인수

field

Field Name

반환값

SolrDisMaxQuery

예제

Example #1 SolrDisMaxQuery::removePhraseField() example

<?php
$dismaxQuery 
= new SolrDisMaxQuery('lucene');
$dismaxQuery
    
->addPhraseField('first'31)
    ->
addPhraseField('second'41)
    ->
addPhraseField('cat'55);
echo 
$dismaxQuery PHP_EOL;
echo 
$dismaxQuery->removePhraseField('second');
?>

위 예제의 출력 예시:

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

참고

add a note add a note

User Contributed Notes

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