Skip to content

Uri: withQuery Example

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

withQuery($query)

  • 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