[PHP-BUG] Bug #71231 [NEW]: parse_url doesn't urldecode urlencoded characters

[email protected] ("zelnaga at gmail dot com")
Newsgroups php.bugs
Message-ID <[email protected]>
From:             zelnaga at gmail dot com
Operating system: Windows 7
PHP version:      7.0.1
Package:          URL related
Bug Type:         Bug
Bug description:parse_url doesn't urldecode urlencoded characters

Description:
------------
If you urlencode a character in a URL than the parsed version of that
URL ought to contain that character urldecoded in the output.

Test script:
---------------
<?php
$a = parse_url('https://www.google.com/se%61rch?q=test');

print_r($a);

Expected result:
----------------
Array
(
    [scheme] => https
    [host] => www.google.com
    [path] => /search
    [query] => q=test
)

Actual result:
--------------
Array
(
    [scheme] => https
    [host] => www.google.com
    [path] => /se%61rch
    [query] => q=test
)

-- 
Edit bug report at https://bugs.php.net/bug.php?id=71231&edit=1
-- 
Try a snapshot (PHP 5.4):   https://bugs.php.net/fix.php?id=71231&r=trysnapshot54
Try a snapshot (PHP 5.5):   https://bugs.php.net/fix.php?id=71231&r=trysnapshot55
Try a snapshot (trunk):     https://bugs.php.net/fix.php?id=71231&r=trysnapshottrunk
Fixed in SVN:               https://bugs.php.net/fix.php?id=71231&r=fixed
Fixed in release:           https://bugs.php.net/fix.php?id=71231&r=alreadyfixed
Need backtrace:             https://bugs.php.net/fix.php?id=71231&r=needtrace
Need Reproduce Script:      https://bugs.php.net/fix.php?id=71231&r=needscript
Try newer version:          https://bugs.php.net/fix.php?id=71231&r=oldversion
Not developer issue:        https://bugs.php.net/fix.php?id=71231&r=support
Expected behavior:          https://bugs.php.net/fix.php?id=71231&r=notwrong
Not enough info:            https://bugs.php.net/fix.php?id=71231&r=notenoughinfo
Submitted twice:            https://bugs.php.net/fix.php?id=71231&r=submittedtwice
register_globals:           https://bugs.php.net/fix.php?id=71231&r=globals
PHP 4 support discontinued: https://bugs.php.net/fix.php?id=71231&r=php4
Daylight Savings:           https://bugs.php.net/fix.php?id=71231&r=dst
IIS Stability:              https://bugs.php.net/fix.php?id=71231&r=isapi
Install GNU Sed:            https://bugs.php.net/fix.php?id=71231&r=gnused
Floating point limitations: https://bugs.php.net/fix.php?id=71231&r=float
No Zend Extensions:         https://bugs.php.net/fix.php?id=71231&r=nozend
MySQL Configuration Error:  https://bugs.php.net/fix.php?id=71231&r=mysqlcfg
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.