SolrDisMaxQuery::addUserField

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

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

Description

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

Adds a field to The User Fields Parameter (uf)

Parameters

field

Field Name

Return Values

SolrDisMaxQuery

Examples

Example #1 SolrDisMaxQuery::addUserField() example

<?php

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

echo
$dismaxQuery.PHP_EOL;

?>

The above example will output something similar to:

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

See Also

add a note add a note

User Contributed Notes

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