From:             
Operating system: Win XP
PHP version:      5.3.2
Package:          *General Issues
Bug Type:         Bug
Bug description:Having a bug when using date_diff($t1,$t2)

Description:
------------
Hi,

Sorry if not posting this bug in the correct section. I'm currently having
a bug when using date_diff().

Seems that when the "day" part of the dates is the same on both dates
compared, the function returns "0 Days" instead of 30 or some Days.

Test script:
---------------
$datetime1 = date_create('2010-03-08');

$datetime2 = date_create('2010-04-08');

$interval = date_diff($datetime1,$datetime2);

echo $interval;

//=> returns "+0 Days"

//

//Whereas

//

$datetime1 = date_create('2010-03-08');

$datetime2 = date_create('2010-04-07');

$interval = date_diff($datetime1,$datetime2);

echo $interval;

//Will return "+30 Days"

Expected result:
----------------
Should return "a whole month" interval like +31 Days in that particular
case.

Actual result:
--------------
returns +0 Days

-- 
Edit bug report at http://bugs.php.net/bug.php?id=51737&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=51737&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=51737&r=trysnapshot53
Try a snapshot (PHP 6.0):            
http://bugs.php.net/fix.php?id=51737&r=trysnapshot60
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=51737&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=51737&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=51737&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=51737&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=51737&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=51737&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=51737&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=51737&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=51737&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=51737&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=51737&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=51737&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=51737&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=51737&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=51737&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=51737&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=51737&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=51737&r=mysqlcfg

Reply via email to