Uri\WhatWg\Url::withPath

Modify the path component

Description

public static Uri\WhatWg\Url::withPath(string $path)

Creates a new URL and modifies its path component.

Parameters

path
New path 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::withPath basic example

<?php
$url = new \Uri\WhatWg\Url("https://example.com/foo/bar");
$url = $url->withPath("/baz");

echo $url->getPath();
?>

The above example will output:

/baz

See Also

  • Uri\WhatWg\Url::getPath
  • Uri\Rfc3986\Uri::withPath