public function Apache_Solr_Response::getEncoding in Apache Solr Search 5
Get character encoding of this response. Should usually be utf-8, but just in case
Return value
string
File
- SolrPhpClient/
Apache/ Solr/ Response.php, line 181
Class
- Apache_Solr_Response
- Represents a Solr response. Parses the raw response into a set of stdClass objects and associative arrays for easy access.
Code
public function getEncoding() {
return $this->_encoding;
}