(No version information available, might only be in Git)
SolrDisMaxQuery::removeQueryField — Removes a Query Field (qf parameter)
public SolrDisMaxQuery::removeQueryField ( string $field ) : SolrDisMaxQuery
Removes a Query Field (qf parameter) from the field list added by SolrDisMaxQuery::addQueryField()
qf: When building DisjunctionMaxQueries from the user's query it specifies the fields to search in, and boosts for those fields.
field
Field Name
Example #1 SolrDisMaxQuery::removeQueryField() example
<?php $dismaxQuery = new SolrDisMaxQuery('lucene'); $dismaxQuery ->addQueryField('first', 3) ->addQueryField('second', 0.2) ->addQueryField('cat'); echo $dismaxQuery . PHP_EOL; // remove field 'second' echo $dismaxQuery->removeQueryField('second'); ?>
The above example will output something similar to:
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/solrdismaxquery.removequeryfield.php