Uri\WhatWg\Url::withQuery
Modify the query component
Description
public static Uri\WhatWg\Url::withQuery(stringnull $query)
Creates a new URL and modifies its query component.
Parameters
-
query
-
New query component.
Return Values
The modified Uri\WhatWg\Url instance.
Errors/Exceptions
If the resulting URL is invalid, a Uri\WhatWg\InvalidUrlException is thrown.
Examples
Example #1 Uri\WhatWg\Url::withQuery basic example
<?php
$url = new \Uri\WhatWg\Url("https://example.com?foo=bar");
$url = $url->withQuery("foo=baz");
echo $url->getQuery();
?>
The above example will output:
See Also
- Uri\WhatWg\Url::getQuery
- Uri\Rfc3986\Uri::withQuery