Uri\Rfc3986\Uri::withFragment
Modify the fragment component
Description
public static Uri\Rfc3986\Uri::withFragment(stringnull $fragment)
Creates a new URI and modifies its fragment component.
Parameters
-
fragment
-
New fragment component.
Return Values
The modified Uri\Rfc3986\Uri instance.
Errors/Exceptions
If the resulting URI is invalid, a Uri\InvalidUriException is thrown.
Examples
Example #1 Uri\Rfc3986\Uri::withFragment basic example
$uri = new \Uri\Rfc3986\Uri("https://example.com/#foo");
$uri = $uri->withFragment("bar");
echo $uri->getFragment();
?>
The above example will output:
See Also
- Uri\Rfc3986\Uri::getFragment
- Uri\Rfc3986\Uri::getRawFragment
- Uri\WhatWg\Url::withFragment