Dutch PHP Conference 2025 - Call For Papers

The SolrGenericResponse class

(PECL solr >= 0.9.2)

Вступ

Represents a response from the solr server.

Короткий огляд класу

final class SolrGenericResponse extends SolrResponse {
/* Константи */
const int PARSE_SOLR_OBJ = 0;
const int PARSE_SOLR_DOC = 1;
/* Успадковані властивості */
protected int $http_status;
protected int $parser_mode;
protected bool $success;
/* Методи */
public __construct()
public __destruct()
/* Успадковані методи */
public SolrResponse::setParseMode(int $parser_mode = 0): bool
}

Попередньо визначені константи

SolrGenericResponse Class constants

SolrGenericResponse::PARSE_SOLR_OBJ

Documents should be parsed as SolrObject instances

SolrGenericResponse::PARSE_SOLR_DOC

Documents should be parsed as SolrDocument instances.

Зміст

add a note

User Contributed Notes

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