SolrDisMaxQuery::addUserField

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

SolrDisMaxQuery::addUserFieldAdds a field to User Fields Parameter (uf)

Descrição

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

Adds a field to The User Fields Parameter (uf)

Parâmetros

field

Field Name

Valor Retornado

SolrDisMaxQuery

Exemplos

Exemplo #1 SolrDisMaxQuery::addUserField() example

<?php

$dismaxQuery
= new SolrDisMaxQuery('lucene');
$dismaxQuery
->addUserField('cat')
->
addUserField('text')
->
addUserField('*_dt');

echo
$dismaxQuery.PHP_EOL;

?>

O exemplo acima produzirá algo semelhante a:

q=lucene&defType=edismax&uf=cat text *_dt

Veja Também

add a note add a note

User Contributed Notes

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