public function ApacheSolrDocument::getFieldValues in Apache Solr Search 8
Same name and namespace in other branches
- 6.3 Apache_Solr_Document.php \ApacheSolrDocument::getFieldValues()
- 7 Apache_Solr_Document.php \ApacheSolrDocument::getFieldValues()
Get the values of all fields in this document
Return value
array
File
- ./
Apache_Solr_Document.php, line 279
Class
- ApacheSolrDocument
- Holds Key / Value pairs that represent a Solr Document along with any associated boost values. Field values can be accessed by direct dereferencing such as:
Code
public function getFieldValues() {
return array_values($this->_fields);
}