Jump to content

Month difference


web2000

Recommended Posts

llewellyntd at gmail dot com

29-Apr-2005 08:50

Here is a very easy way to get the difference, in days, between two dates:

 

$days = (strtotime("2005-12-31") - strtotime(date("Y-m-d"))) / (60 * 60 * 24);

print $days;

 

Found in user comments at www.php.net/date

 

<?php
$date_start = "04/01/2005";
$date_end = "06/01/2005";
$months = ((strtotime($date_start) - strtotime($date_end))/(3600*24*30));
print $months;
?>

 

Untested, the only issue is the amount of days some months can have, this is assuming all months have 30 days.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.