PHP 8.3.4 Released!

SolrDisMaxQuery::setTrigramPhraseFields

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

SolrDisMaxQuery::setTrigramPhraseFieldsDirectly Sets Trigram Phrase Fields (pf3 parameter)

Descripción

public SolrDisMaxQuery::setTrigramPhraseFields(string $fields): SolrDisMaxQuery

Directly Sets Trigram Phrase Fields (pf3 parameter)

Parámetros

fields

Trigram Phrase Fields

Valores devueltos

SolrDisMaxQuery

Ejemplos

Ejemplo #1 SolrDisMaxQuery::setTrigramPhraseFields() example

<?php

$dismaxQuery
= new SolrDisMaxQuery('lucene');
$dismaxQuery->setTrigramPhraseFields('cat~5.1^2 feature^4.5');
echo
$dismaxQuery.PHP_EOL;

?>

El resultado del ejemplo sería:

q=lucene&defType=edismax&pf3=cat~5.1^2 feature^4.5

Ver también

add a note

User Contributed Notes

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