|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-11-09 12:46 UTC] ilia at prohost dot org
[2006-11-10 05:37 UTC] troehr@php.net
[2006-11-10 07:33 UTC] pierre dot php at gmail dot com
[2006-11-10 09:04 UTC] troehr@php.net
[2006-11-10 10:17 UTC] pierre dot php at gmail dot com
[2013-10-26 18:06 UTC] cmbecker69 at gmx dot de
[2015-01-09 00:33 UTC] ajf@php.net
-Status: Assigned
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 09:00:01 2025 UTC |
Description: ------------ Revision: 1.52.2.25 of filter extension with PHP 5.2.0: Using filter_var() etc. with FILTER_VALIDATE_INT returns wrong value instead of false. Reproduce code: --------------- var_dump(filter_var('2147483648', FILTER_VALIDATE_INT)); var_dump(filter_var('-2147483649', FILTER_VALIDATE_INT)); Expected result: ---------------- bool(false) bool(false) Actual result: -------------- int(-2147483648) int(2147483647)