php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #28187 parse_url doesn't handle embedded IPv6 addresses
Submitted: 2004-04-27 19:40 UTC Modified: 2004-04-27 21:23 UTC
From: blue at anonix dot net Assigned: pollita (profile)
Status: Closed Package: URL related
PHP Version: 4.3.4 OS: OpenBSD
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
4 + 49 = ?
Subscribe to this entry?

 
 [2004-04-27 19:40 UTC] 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


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-04-27 21:23 UTC] pollita@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.

~/cvs/php4$ sapi/cli/php -r 'print_r(parse_url("http://[::1]/"));'
Array
(
    [scheme] => http
    [host] => ::1
    [path] => /
)

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 04:01:28 2024 UTC