ID: 48758 Updated by: j...@php.net Reported By: j dot jeising at gmail dot com -Status: Open +Status: Bogus Bug Type: Filter related Operating System: * PHP Version: 5.3.0 New Comment:
Please do not submit the same bug more than once. An existing bug report already describes this very problem. Even if you feel that your issue is somewhat different, the resolution is likely to be the same. Thank you for your interest in PHP. Previous Comments: ------------------------------------------------------------------------ [2009-07-01 20:15:29] j dot jeising at gmail dot com Description: ------------ FILTER_VALIDATE_URL rejects URLs with umlauts in the path. Umlauts are not allowed in the domain (object of #42353), but in the path, they are (at least, everybody supports them). Reproduce code: --------------- $url = 'http://www.example.com/exämple'; var_dump(filter_var($url, FILTER_VALIDATE_URL)); Expected result: ---------------- string(30) "http://www.example.com/example" Actual result: -------------- bool(false) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=48758&edit=1