(No version information available, might only be in Git)
Removes a field from The User Fields Parameter (uf)
public SolrDisMaxQuery SolrDisMaxQuery::removeUserField ( string $field )
Removes a field from The User Fields Parameter (uf)
Parameters:
field
Field Name
Returns:
This function is currently not documented; only its argument list is available.
Examples:
SolrDisMaxQuery::removeUserField() example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <?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:
Please login to continue.