wrong behavior FILTER_VALIDATE_INT -0 +0

Bug #54096 wrong behavior FILTER_VALIDATE_INT -0 +0
Submitted: 2011-02-24 19:51 UTC Modified: 2012-12-29 10:24 UTC
Votes:1
Avg. Score:1.0 ± 0.0
Reproduced:0 of 1 (0.0%)
From: _coola_ at arcor dot de Assigned: mj (profile)
Status: Closed Package: Filter related
PHP Version: Irrelevant OS: -
Private report: No CVE-ID: None

 [2011-02-24 19:51 UTC] _coola_ at arcor dot de

Description:
------------
Bug report #47752

error_reporting(-1); 
var_dump(filter_var('-0',FILTER_VALIDATE_INT)); // bool(false) 
var_dump(-0); // int(0) 

In my opinion FILTER_VALIDATE_INT must work like var_dump(-0);
Sooner or later we will get problems if everything works different.

PHP defines -0 as an int. So FILTER_VALIDATE_INT must also accept -0 and +0.

Thank you



Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports

 [2012-12-26 10:59 UTC] mj@php.net

-Status: Open +Status: Assigned -Assigned To: +Assigned To: mj

 [2012-12-29 10:24 UTC] mj@php.net

The fix for this bug has been committed.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.

 For Windows:

http://windows.php.net/snapshots/
 
Thank you for the report, and for helping us make PHP better.


 [2012-12-29 10:24 UTC] mj@php.net

-Status: Assigned +Status: Closed