public function 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

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/ParsedUri.php, line 173

Class

EasyRdf_ParsedUri
A RFC3986 compliant URI parser

Code

public function setQuery($query) {
  $this->query = $query;
}