SolrParams::setParam

(PECL solr >= 0.9.2)
Sets the parameter to the specified value
public SolrParams SolrParams::setParam ( string $name, string $value )

Sets the query parameter to the specified value. This is used for parameters that can only be specified once. Subsequent calls with the same parameter name will override the existing value

Parameters:
name

Name of the parameter

value

Value of the parameter

Returns:

Returns a SolrParam object on success and FALSE on value.

Examples:
SolrParams::setParam() example
<?php

$param = new SolrParams();

$param->setParam('q', 'solr')->setParam('rows', 2);

?>

The above example will output something similar to:

doc_php
2016-02-24 16:11:05
Comments
Leave a Comment

Please login to continue.