public function EasyRdf_Http_Client::getParameterGet in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/easyrdf/easyrdf/lib/EasyRdf/Http/Client.php \EasyRdf_Http_Client::getParameterGet()
Get a GET parameter for the request.
Parameters
string $name:
Return value
string value
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ Http/ Client.php, line 273
Class
- EasyRdf_Http_Client
- This class is an implemetation of an HTTP client in PHP. It supports basic HTTP 1.0 and 1.1 requests. For a more complete implementation try Zend_Http_Client.
Code
public function getParameterGet($name) {
if (isset($this->paramsGet[$name])) {
return $this->paramsGet[$name];
}
else {
return null;
}
}