Uri\WhatWg\Url::withHost

Modify the host component

Description

public static Uri\WhatWg\Url::withHost(stringnull $host)

Creates a new URL and modifies its host component.

Parameters

host
New host 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::withHost basic example

<?php
$url = new \Uri\WhatWg\Url("https://example.com");
$url = $url->withHost("example.net");

echo $url->getAsciiHost();
?>

The above example will output:

example.net

See Also

  • Uri\WhatWg\Url::getAsciiHost
  • Uri\WhatWg\Url::getUnicodeHost
  • Uri\Rfc3986\Uri::withHost