SolrDisMaxQuery::setQueryAlt

(No version information available, might only be in Git)
Set Query Alternate (q.alt parameter)
public SolrDisMaxQuery SolrDisMaxQuery::setQueryAlt ( string $q )

Set Query Alternate (q.alt parameter)

When the main q parameter is not specified or is blank. The q.alt parameter is used

Parameters:
q

Query String

Returns:

SolrDisMaxQuery

Examples:
SolrDisMaxQuery::setQueryAlt() example
1
2
3
4
5
6
<?php
 
$dismaxQuery new DisMaxQuery();
$dismaxQuery->setQueryAlt('*:*');
 
?>

The above example will output something similar to:

defType=edismax&q.alt=*:*&q=
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.