php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #74282 parse_url returns wrong result
Submitted: 2017-03-21 11:42 UTC Modified: 2017-03-21 11:43 UTC
From: alex at 2sun dot su Assigned:
Status: Duplicate Package: URL related
PHP Version: 7.1.3 OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: alex at 2sun dot su
New email:
PHP Version: OS:

 

 [2017-03-21 11:42 UTC] alex at 2sun dot su
Description:
------------
URL like 

scheme://example_login:#Password?@ZZZ@127.0.0.1/some_path

parse_url returns wrong result in PHP 7.1.3, 7.0.14, 5.6.29 (I have them available)

But all works as expected in PHP 7.0.5, 5.6.20

Test script:
---------------
var_dump( parse_url("scheme://example_login:#Password?@ZZZ@127.0.0.1/some_path") );

Expected result:
----------------
array(5) {
  ["scheme"]=>
  string(6) "scheme"
  ["host"]=>
  string(9) "127.0.0.1"
  ["user"]=>
  string(13) "example_login"
  ["pass"]=>
  string(14) "#Password?@ZZZ"
  ["path"]=>
  string(10) "/some_path"
}


Actual result:
--------------
array(3) {
  ["scheme"]=>
  string(6) "scheme"
  ["host"]=>
  string(13) "example_login"
  ["fragment"]=>
  string(33) "Password?@ZZZ@127.0.0.1/some_path"
}

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-03-21 11:43 UTC] requinix@php.net
-Status: Open +Status: Duplicate
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sun Jan 05 07:01:27 2025 UTC