ID: 28187
Updated by: [EMAIL PROTECTED]
Reported By: blue at anonix dot net
-Status: Open
+Status: Assigned
Bug Type: URL related
Operating System: OpenBSD
PHP Version: 4.3.4
-Assigned To:
+Assigned To: pollita
Previous Comments:
------------------------------------------------------------------------
[2004-04-27 19:40:45] blue at anonix dot net
Description:
------------
parse_url doesn't handle embedded IPv6 addresses (RFC 2732)
Reproduce code:
---------------
print_r(parse_url('http://[::1]/'));
Expected result:
----------------
Array
(
[scheme] => http
[host] => [::1]
[path] => /
)
Actual result:
--------------
Array
(
[scheme] => http
[host] => [
[path] => /
)
With a full IPv6 address like 1234:1234:1234:1234:1324:1234:1234 it
doesn't even get that far: PHP Warning:
parse_url(http://[1234:1234:1234:1234:1324:1234:1234:1234]/): Unable to
parse url in Command line code on line 1
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=28187&edit=1