public function EasyRdf_ParsedUri::setQuery in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php \EasyRdf_ParsedUri::setQuery()
Set the query string of the URI (e.g. foo=bar)
Parameters
string $query The new value for the query string component of the URI:
File
- vendor/
easyrdf/ easyrdf/ lib/ EasyRdf/ ParsedUri.php, line 172
Class
- EasyRdf_ParsedUri
- A RFC3986 compliant URI parser
Code
public function setQuery($query) {
$this->query = $query;
}