I like this way too but it will not work with a date before the first
January 1901.

Do you have another method?

Brice Favre



On Sat, Mar 1, 2008 at 7:08 AM, Jim Lucas <[EMAIL PROTECTED]> wrote:
> Ron Piggott wrote:
>  > Is there an easy way to calculate the number of days between two dates?
>  >
>  > Example: 2008-02-27 - 2007-12-03 = 86 days
>  >
>  > The dates will be in the format above YYYY-MM-DD
>  >
>  > Ron
>  >
>
>  This should do the trick
>
>  <?php
>
>  $date1 = '2008-02-27';
>  $date2 = '2007-12-03';
>
>  $udate1 = strtotime($date1);
>  $udate2 = strtotime($date2);
>
>  $factor = 86400;
>
>
>  $difference = (($udate1 - $udate2) / $factor);
>
>  echo "The difference is {$difference} days";
>
>
>  Jim
>


>
>  --
>  PHP General Mailing List (http://www.php.net/)
>  To unsubscribe, visit: http://www.php.net/unsub.php
>
>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to