How to find time difference between two dates using PHP.
For example i am having two dates:
start Date : 2010-07-30 00:00:00
end Date : 2010-07-30 00:00:00
In this case how shall i find the time difference using PHP.
|
You will have second in $diff variable |
|||
|
|
If you're using PHP 5.3 or better (which you should be), you can use the built in DateTime class to produce a DateInterval which can be formatted easily.
DateTime was introduced in 5.1, but DateInterval is new to 5.3. |
|||
|
|
|
|||
|
|