Mantis - Quercus
Viewing Issue Advanced Details
4070 minor always 06-04-10 06:06 06-06-10 04:01
sblommers Linux  
Ubuntu  
normal 10.04  
new 4.0.8  
SVN open  
none    
none  
0004070: strtotime not returning correct value-type
Incorrect return type when uring strtotime with a incorrect string (format?)
$date=strtotime('1149585733 +5 days');
var_dump($date); //should return bool(false);

QUERCUS returns a int with +5
PHP returns false

Notes
(0004633)
hm2k   
06-06-10 04:01   
<?php

$date=strtotime('1149585733 +5 days'); var_dump($date); //should return bool(false);

?>