(No version information available, might only be in Git)
SolrDisMaxQuery::removeTrigramPhraseField — Removes a Trigram Phrase Field (pf3 parameter)
public SolrDisMaxQuery::removeTrigramPhraseField ( string $field ) : SolrDisMaxQuery
Removes a Trigram Phrase Field (pf3 parameter)
field
Field Name
Example #1 SolrDisMaxQuery::removeTrigramPhraseField() example
<?php $dismaxQuery = new SolrDisMaxQuery('lucene'); $dismaxQuery ->addTrigramPhraseField('cat', 2, 5.1) ->addTrigramPhraseField('feature', 4.5) ; echo $dismaxQuery.PHP_EOL; // reverse $dismaxQuery ->removeTrigramPhraseField('cat'); echo $dismaxQuery.PHP_EOL; ?>
The above example will output:
q=lucene&defType=%s&pf3=cat~5.1^2 feature^4.5 q=lucene&defType=%s&pf3=feature^4.5
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/solrdismaxquery.removetrigramphrasefield.php