function HTTP_Request::addRawQueryString in Flickr API 5
Sets the querystring to literally what you supply
@access public
Parameters
string The querystring data. Should be of the format foo=bar&x=y etc:
bool Whether data is already urlencoded or not, default = already encoded:
File
- phpFlickr/
PEAR/ HTTP/ Request.php, line 530
Class
- HTTP_Request
- Class for performing HTTP requests
Code
function addRawQueryString($querystring, $preencoded = true) {
$this->_url
->addRawQueryString($querystring, $preencoded);
}