Edit report at http://bugs.php.net/bug.php?id=53608&edit=1

 ID:                 53608
 Comment by:         brad at njoe dot com
 Reported by:        jer_826 at yahoo dot com
 Summary:            mktime() produces invalid results under 64-bit
 Status:             Open
 Type:               Bug
 Package:            Unknown/Other Function
 Operating System:   Linux 2.6.35.7  x86_64
 PHP Version:        5.2.16
 Block user comment: N
 Private report:     N

 New Comment:

Confirmed on Ubuntu 10.10 (Linux 2.6.35-24-server x86_64). Also tested a
Win32 

build and all three var_dumps() show "bool(false)" as
expected/documented.


Previous Comments:
------------------------------------------------------------------------
[2010-12-24 22:19:04] jer_826 at yahoo dot com

Description:
------------
It appears that when the PHP binary was compiled against 64-bit
libraries,  

mktime() seems to only do minimal error checking of parms. After some
additional 

testing, if found the following results:

PHP Code:

$t=mktime(0,0,0,12,3,292277026596); 

var_dump($t); 



$t=mktime(0,0,0,12,3,292277026597); 

var_dump($t); 



$t=mktime(900000000000,900000000000,900000000000,900000000000,900000000000,90000

0000000); 



var_dump($t); 

int(9223372036854655200)

int(-9223372036823360416) 

int(-6044405109589065632)



It appears that once the parm value exceeds the value limit of a long
var, the 

function returns a negative value. No warnings are produced. Instead of


returning FALSE for an error, the function just returns an invalid
result.



Some additional info here: http://phpbuilder.com/board/showthread.php?

p=10971046#post10971046

Test script:
---------------
$t=mktime(0,0,0,12,3,292277026596); 

var_dump($t); 



$t=mktime(0,0,0,12,3,292277026597); 

var_dump($t); 



$t=mktime(900000000000,900000000000,900000000000,900000000000,900000000000,900000000000);




var_dump($t); 

int(9223372036854655200)

int(-9223372036823360416) 

int(-6044405109589065632)

Expected result:
----------------
Return FALSE if parms are invalid.

Actual result:
--------------
Invalid values. Does not return FALSE.


------------------------------------------------------------------------



-- 
Edit this bug report at http://bugs.php.net/bug.php?id=53608&edit=1

Reply via email to