(PHP 8 >= 8.5.0)
Uri\WhatWg\Url::withPath — Modify the path component
Creates a new URL and modifies its path component.
pathThe modified Uri\WhatWg\Url instance.
If the resulting URL is invalid, a Uri\WhatWg\InvalidUrlException is thrown.
Örnek 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();
?>Yukarıdaki örneğin çıktısı:
/baz