public function QueryString::setPrefix

Set the query string prefix

Parameters

string $prefix Prefix to use with the query string (e.g. '?'):

Return value

QueryString

File

drupal/core/vendor/guzzle/http/Guzzle/Http/QueryString.php, line 260

Class

QueryString
Query string object to handle managing query string parameters and aggregating those parameters together as a string.

Namespace

Guzzle\Http

Code

public function setPrefix($prefix) {
  $this->prefix = $prefix;
  return $this;
}