| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2017-03-21 11:43 UTC] requinix@php.net
 
-Status: Open
+Status: Duplicate
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 15:00:01 2025 UTC | 
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" }