ID: 49403 Updated by: il...@php.net Reported By: botisdale at gmail dot com -Status: Open +Status: Bogus Bug Type: Filter related Operating System: win xp PHP Version: 5.2.10 New Comment:
Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php . Previous Comments: ------------------------------------------------------------------------ [2009-08-28 21:38:42] botisdale at gmail dot com Description: ------------ It seems that the scheme is always required for FILTER_VALIDATE_URL, whether or not FILTER_FLAG_SCHEME_REQUIRED is used - making the second flag redundant. Is this the expected behavior of FILTER_VALIDATE_URL? Does it never evaluate 'example.com' to true? --- >From manual page: function.filter-var --- Reproduce code: --------------- --- >From manual page: function.filter-var --- #1: <?php var_dump(filter_var('example.com', FILTER_VALIDATE_URL)); ?> #2: <?php var_dump(filter_var('example.com', FILTER_VALIDATE_URL, FILTER_FLAG_SCHEME_REQUIRED)); ?> Expected result: ---------------- I'd expect to see: #1: string(11) "example.com" #2: bool(false) Actual result: -------------- #1: bool(false) #2: bool(false) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=49403&edit=1