Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

splint(3) [php man page]

SPLINT(3)								 1								 SPLINT(3)

The SplInt class

INTRODUCTION
The SplInt class is used to enforce strong typing of the integer type. CLASS SYNOPSIS
SplInt SplIntextends SplType Constants o const integer$SplInt::__default0 Inherited methods o SplType::__construct ([mixed $initial_value], [bool $strict]) PREDEFINED CONSTANTS
o SplInt::__default - EXAMPLES
Example #1 SplInt usage example <?php $int = new SplInt(94); try { $int = 'Try to cast a string value for fun'; } catch (UnexpectedValueException $uve) { echo $uve->getMessage() . PHP_EOL; } echo $int . PHP_EOL; ?> The above example will output: Value not an integer 94 PHP Documentation Group SPLINT(3)

Check Out this Related Man Page

SOLRGENERICRESPONSE(3)							 1						    SOLRGENERICRESPONSE(3)

The SolrGenericResponse class

INTRODUCTION
Represents a response from the solr server. CLASS SYNOPSIS
SolrGenericResponse final SolrGenericResponseextends SolrResponse Constants o const integer$SolrGenericResponse::PARSE_SOLR_OBJ0 o const integer$SolrGenericResponse::PARSE_SOLR_DOC1 Inherited properties o const integer$SolrResponse::PARSE_SOLR_OBJ0 o const integer$SolrResponse::PARSE_SOLR_DOC1 o protected integer$http_status o protected integer$parser_mode o protected bool$success o protected string$http_status_message o protected string$http_request_url o protected string$http_raw_request_headers o protected string$http_raw_request o protected string$http_raw_response_headers o protected string$http_raw_response o protected string$http_digested_response Methods o public SolrGenericResponse::__construct (void ) o public void SolrGenericResponse::__destruct (void ) Inherited methods o public string SolrResponse::getDigestedResponse (void ) o public int SolrResponse::getHttpStatus (void ) o public string SolrResponse::getHttpStatusMessage (void ) o public string SolrResponse::getRawRequest (void ) o public string SolrResponse::getRawRequestHeaders (void ) o public string SolrResponse::getRawResponse (void ) o public string SolrResponse::getRawResponseHeaders (void ) o public string SolrResponse::getRequestUrl (void ) o public SolrObject SolrResponse::getResponse (void ) o public bool SolrResponse::setParseMode ([int $parser_mode]) o public bool SolrResponse::success (void ) PREDEFINED CONSTANTS
SOLRGENERICRESPONSE CLASS CONSTANTS
o SolrGenericResponse::PARSE_SOLR_OBJ -Documents should be parsed as SolrObject instances o SolrGenericResponse::PARSE_SOLR_DOC -Documents should be parsed as SolrDocument instances. PHP Documentation Group SOLRGENERICRESPONSE(3)
Man Page