You are here

public function ApacheSolrDocument::getFieldNames in Apache Solr Search 7

Same name and namespace in other branches
  1. 8 Apache_Solr_Document.php \ApacheSolrDocument::getFieldNames()
  2. 6.3 Apache_Solr_Document.php \ApacheSolrDocument::getFieldNames()

Get the names of all fields in this document

Return value

array

File

./Apache_Solr_Document.php, line 270

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 getFieldNames() {
  return array_keys($this->_fields);
}