vote up 1 vote down star
1

I have two dates in the format below:

Start Date = 30-10-2009

End Date = 30-11-2009

How, with PHP could I calculate the seconds between these two dates?

flag

3 Answers

vote up 5 vote down check

Parse the two dates into Unix timestamps using strtotime, then get the difference:

$firstTime = strtotime("30-10-2009");
$secondTime = strtotime("30-11-2009");
$diff = $secondtime - $firstTime;
link|flag
Can unix timestamps understand any format of date I throw in, for example: 2009-30-10 ? – Keith Donegan Oct 30 at 9:48
It's pretty good - it shouldn't have problems with 2009-30-10. You'll need to be careful with ambiguous dates (does "10-09-2009" mean 9th October or 10th September?). – Dominic Rodger Oct 30 at 10:03
Yeah true, what would be the best format to put it in to avoid such clashes? - Thanks again – Keith Donegan Oct 30 at 19:16
It doesn't really matter, provided you're consistent. – Dominic Rodger Nov 1 at 17:30
vote up 2 vote down

The function strtotime() will convert a date to a unix-style timestamp (in seconds). You should then be able to subtract the end date from the start date to get the difference.

$difference_secs = strtotime($end_date) - strtotime($start_date);
link|flag
vote up 1 vote down

I'd rather advice to use built in DateTime object.

$firstTime = new DateTime("30-10-2009");
$diff = $firstTime->diff(new DateTime("30-11-2009"));

As for me it's more flexible and OOP oriented.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.