Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16164 программиста и 1779 роботов. Сейчас ищут 1785 программистов ...
SolrInputDocument::addField - Adds a field to the document
Вернуться к: SolrInputDocument
SolrInputDocument::addField
(PECL solr >= 0.9.2)
SolrInputDocument::addField — Adds a field to the document
Описание
public bool SolrInputDocument::addField
( string
$fieldName
, string $fieldValue
[, float $fieldBoostValue
= 0.0
] )For multi-value fields, if a valid boost value is specified, the specified value will be multiplied by the current boost value for this field.
Список параметров
-
fieldName
-
The name of the field
-
fieldValue
-
The value for the field.
-
fieldBoostValue
-
The index time boost for the field. Though this cannot be negative, you can still pass values less than 1.0 but they must be greater than zero.
Возвращаемые значения
Возвращает TRUE
в случае успешного завершения или FALSE
в случае возникновения ошибки.
Вернуться к: SolrInputDocument