|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2013-05-15 12:57 UTC] [email protected]
-Assigned To:
+Assigned To: pajoye
[2013-09-16 21:36 UTC] [email protected]
[2013-09-16 21:36 UTC] [email protected]
-Status: Assigned
+Status: Closed
[2014-10-07 23:17 UTC] [email protected]
[2014-10-07 23:28 UTC] [email protected]
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Mar 17 18:00:02 2026 UTC |
Description: ------------ FILTER_VALIDATE_URL rejects fully qualified domain names even though parse_url() parses them just fine. Test script: --------------- var_dump(filter_var('http://example.com.', FILTER_VALIDATE_URL)); Expected result: ---------------- string(18) "http://example.com." Actual result: -------------- bool(false)