How to find number of days between two dates using php.
for this i have test the answer of:
Calculate number of days between two dates in PHP [closed] (3)
on this forum.
but it does not work.
can any one help me.
|
How to find number of days between two dates using php. for this i have test the answer of: Calculate number of days between two dates in PHP [closed] (3) on this forum. but it does not work. can any one help me. |
|||
|
|
|||||||||||||||||||||
|
|
Convert your dates to unix timestamps, then substract one from the another. That will give you the difference in seconds, which you divide by 86400 (amount of seconds in a day) to give you an approximate amount of days in that range. If your dates are in format
Using If your dates are already in unix timestamp format, you can skip the converting and just do the |
|||||||||||
|
|
The following SO questions might be of some help: |
|||
|
|
|
If you're using
|
||||
|
|
|
If you have the times in seconds (I.E. unix time stamp) , then you can simply subtract the times and divide by 86400 (seconds per day) |
|||
|
|
|
Used this :)
Now it works |
|||||
|
and, if needed:
|
||||
|
|
|
|||
|
|