Skip to content

ext/uri: RFC 3986 IPv6 handling is inconsistent #22618

Description

@JKingweb

Description

The following code:

<?php
$u = new Uri\Rfc3986\Uri("http://[::0:0A]/");
var_dump($u->getRawHost());
var_dump($u->getHost());
var_dump($u->toRawString());
var_dump($u->toString());

Resulted in this output:

string(8) "[::0:0A]"
string(8) "[::0:0a]"
string(49) "http://[0000:0000:0000:0000:0000:0000:0000:000a]/"
string(49) "http://[0000:0000:0000:0000:0000:0000:0000:000a]/"

But I expected this output instead:

string(8) "[::0:0A]"
string(8) "[0000:0000:0000:0000:0000:0000:0000:000a]"
string(49) "http://[::0:0A]/"
string(49) "http://[0000:0000:0000:0000:0000:0000:0000:000a]/"

Alternatively I might expect this output:

string(8) "[::0:0A]"
string(8) "[::a]"
string(49) "http://[::0:0A]/"
string(49) "http://[::a]/"

PHP Version

PHP 8.5.8 (cli) (built: Jul  1 2026 16:35:50) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.5.8, Copyright (c) Zend Technologies
    with Zend OPcache v8.5.8, Copyright (c), by Zend Technologies

Operating System

Arch Linux

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions