function HTTP_Request::getResponseCode in Flickr API 5
Returns the response code
@access public
Return value
mixed Response code, false if not set
1 call to HTTP_Request::getResponseCode()
- HTTP_Request::sendRequest in phpFlickr/
PEAR/ HTTP/ Request.php - Sends the request
File
- phpFlickr/
PEAR/ HTTP/ Request.php, line 833
Class
- HTTP_Request
- Class for performing HTTP requests
Code
function getResponseCode() {
return isset($this->_response->_code) ? $this->_response->_code : false;
}