Php/docs/class.solrresponse

来自菜鸟教程
跳转至:导航、​搜索

(PECL solr >= 0.9.2)

简介

Represents a response from the Solr server.


类摘要


abstract SolrResponse {

/* 常量 */

const int PARSE_SOLR_OBJ = 0

const int PARSE_SOLR_DOC = 1

/* 属性 */

protected int $http_status

protected int $parser_mode

protected bool $success

protected string $http_status_message

protected string $http_request_url

protected string $http_raw_request_headers

protected string $http_raw_request

protected string $http_raw_response_headers

protected string $http_raw_response

protected string $http_digested_response

/* 方法 */

public getDigestedResponse ( ) : string

public getHttpStatus ( ) : int

public getHttpStatusMessage ( ) : string

public getRawRequest ( ) : string

public getRawRequestHeaders ( ) : string

public getRawResponse ( ) : string

public getRawResponseHeaders ( ) : string

public getRequestUrl ( ) : string

public getResponse ( ) : SolrObject

public setParseMode ([ int $parser_mode = 0 ] ) : bool

public success ( ) : bool

}

属性

http_status
The http status of the response.
parser_mode
Whether to parse the solr documents as SolrObject or SolrDocument instances.
success
Was there an error during the request
http_status_message
Detailed message on http status
http_request_url
The request URL
http_raw_request_headers
A string of raw headers sent during the request.
http_raw_request
The raw request sent to the server
http_raw_response_headers
Response headers from the Solr server.
http_raw_response
The response message from the server.
http_digested_response
The response in PHP serialized format.


预定义常量

SolrResponse Class Constants

SolrResponse::PARSE_SOLR_OBJ
Documents should be parsed as SolrObject instances
SolrResponse::PARSE_SOLR_DOC
Documents should be parsed as SolrDocument instances.


Table of Contents