Dutch PHP Conference 2025 - Call For Papers

SolrInputDocument::addField

(PECL solr >= 0.9.2)

SolrInputDocument::addFieldAdds a field to the document

Опис

public SolrInputDocument::addField(string $fieldName, string $fieldValue, float $fieldBoostValue = 0.0): bool

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 в разі помилки.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top