SolrDisMaxQuery::removeUserField

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

SolrDisMaxQuery::removeUserFieldRemoves a field from The User Fields Parameter (uf)

Description

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

Removes a field from The User Fields Parameter (uf)

Warning

This function is currently not documented; only its argument list is available.

Parameters

field

Field Name

Return Values

SolrDisMaxQuery

Examples

Example #1 SolrDisMaxQuery::removeUserField() example

<?php

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

// remove field named 'text'
$dismaxQuery
->removeUserField('text');
echo
$dismaxQuery.PHP_EOL;

?>

The above example will output something similar to:

q=lucene&defType=%s&uf=cat text *_dt
q=lucene&defType=%s&uf=cat *_dt

See Also

add a note add a note

User Contributed Notes

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