ID: 36351 User updated by: adam at nojszewski dot com Reported By: adam at nojszewski dot com Status: Open Bug Type: URL related PHP Version: 5.1.2 New Comment:
I have found a cause of this behavior URL like string:number are generaly treated as host:port when nuber is [0,65535]. When number is [65536,99999] function wraps it to values [0,34463]. When nuber is more than 5 digits long function treats it as part of a path. But web browsers treat specific combinations (i.e. 'mailto:555') not as host:port, but as scheme:path. Previous Comments: ------------------------------------------------------------------------ [2006-02-10 14:09:26] adam at nojszewski dot com Description: ------------ parse_url does not parses 'scheme:path' when path consists of numbers only. skype:anojszewski is parsed right. gg:9130731 is parsed wrong (whole URL is treated as path). Tested on versions 5.1.2 and 4.4.2. Adam Nojszewski Reproduce code: --------------- print_r(parse_url("skype:anojszewski")); print_r(parse_url("gg:9130731")); Expected result: ---------------- Array ( [scheme] => skype [path] => anojszewski ) Array ( [scheme] => gg [path] => 9130731 ) Actual result: -------------- Array ( [scheme] => skype [path] => anojszewski ) Array ( [path] => gg:9130731 ) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=36351&edit=1
