SolrParams::setParam
(PECL solr >= 0.9.2)
SolrParams::setParam — Sets the parameter to the specified value
Description
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
Return Values
Returns a SolrParam object on success and FALSE
on value.
Examples
Example #1 SolrParams::setParam() example
<?php
$param = new SolrParams();
$param->setParam('q', 'solr')->setParam('rows', 2);
?>
The above example will output something similar to:
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения для работы с поисковыми системами
- Apache Solr
- Функция SolrParams::add() - This is an alias for SolrParams::addParam
- Функция SolrParams::addParam() - Adds a parameter to the object
- Функция SolrParams::get() - This is an alias for SolrParams::getParam
- Функция SolrParams::getParam() - Returns a parameter value
- Функция SolrParams::getParams() - Returns an array of non URL-encoded parameters
- Функция SolrParams::getPreparedParams() - Returns an array of URL-encoded parameters
- Функция SolrParams::serialize() - Used for custom serialization
- Функция SolrParams::set() - An alias of SolrParams::setParam
- Функция SolrParams::setParam() - Sets the parameter to the specified value
- Функция SolrParams::toString() - Returns all the name-value pair parameters in the object
- Функция SolrParams::unserialize() - Used for custom serialization
Коментарии
404 Not Found