-
Notifications
You must be signed in to change notification settings - Fork 8k
Open
Description
Description
The following code:
<?php
echo Uri\Rfc3986\Uri::parse("https://example.com")->withHost(null)->toRawString(), PHP_EOL;
echo Uri\Rfc3986\Uri::parse("https://example.com/")->withHost(null)->toRawString(), PHP_EOL;Resulted in this output:
http:/
http:/
But I expected this output instead:
http:
http:/
PHP Version
not relevant
Operating System
No response