Skip to content

Uri: withQuery Example

Terry L edited this page Jun 20, 2020 · 3 revisions

Shieldon\Psr7\Uri

withQuery($query)

Return an instance with the specified query string.

  • param string query * The query string to use with the new instance.
  • return static

Example:

echo $uri->getQuery();
// Outputs: p=113&foo=bar

$uri = $uri->witQuery('p=120&foo=baz');
echo $uri->getQuery();
// Outputs: p=120&foo=baz
Clone this wiki locally