(PHP 8 >= 8.5.0)
Uri\WhatWg\Url::withScheme — Modify the scheme component
Creates a new URL and modifies its scheme component.
schemeThe modified Uri\WhatWg\Url instance.
If the resulting URL is invalid, a Uri\WhatWg\InvalidUrlException is thrown.
Пример #1 Uri\WhatWg\Url::withScheme() basic example
<?php
$url = new \Uri\WhatWg\Url("https://example.com");
$url = $url->withScheme("http");
echo $url->getScheme();
?>Результат выполнения приведённого примера:
http