(No version information available, might only be in Git)
SolrDisMaxQuery::removeUserField — Removes a field from The User Fields Parameter (uf)
Removes a field from The User Fields Parameter (uf)
This function is currently not documented; only its argument list is available.
field
Field Name
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