You are here

function HTTP_Request::getUrl in Flickr API 5

Returns the current request URL

@access public

Return value

string Current request URL

File

phpFlickr/PEAR/HTTP/Request.php, line 423

Class

HTTP_Request
Class for performing HTTP requests

Code

function getUrl() {
  return empty($this->_url) ? '' : $this->_url
    ->getUrl();
}