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?
|
1
|
|
|
|
|
|
Parse the two dates into Unix timestamps using
|
||||||||
|
|
|
The function
|
||
|
|
|
|
I'd rather advice to use built in DateTime object.
As for me it's more flexible and OOP oriented. |
||
|
|