• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • SolrDisMaxQuery::addPhraseField()

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

    Adds a Phrase Field(pf parameter)

    说明

    publicSolrDisMaxQuery::addPhraseField(string $field,string $boost[,string $slop]): SolrDisMaxQuery

    Adds a Phrase Field(pf parameter)

    参数

    $field

    field name

    $boost
    $slop

    返回值

    SolrDisMaxQuery

    范例

    Example #1 SolrDisMaxQuery::addPhraseField() example

    <?php
    $dismaxQuery = new SolrDisMaxQuery("lucene");
    $dismaxQuery
        ->addPhraseField('cat', 3, 1)
        ->addPhraseField('third', 4, 2)
        ->addPhraseField('source', 55)
    ;
    echo $dismaxQuery;
    ?>
    

    以上例程的输出类似于:

    q=lucene&defType=edismax&pf=cat~1^3 third~2^4 source^55
    

    参见

    • SolrDisMaxQuery::removePhraseField() Removes a Phrase Field(pf parameter)
    • SolrDisMaxQuery::setPhraseFields() Sets Phrase Fields and their boosts(and slops)using pf2 parameter