PHP Date Calculation

Peter

Member
Joined
Jul 7, 2012
Messages
58
Points
0
Hello,

How can we know the number of days between two given dates using php?
You can use this to get number of days between startdate and enddate
Code:
<?php
$startDate = strtotime('2013-10-02');
$endDate = strtotime('2013-12-02');
$number_of_days = ($endDate - $startDate) / (60 * 60 * 24);
echo $number_of_days;
?>
Hope it's useful for you.
 

Adriana14

Member
Joined
Apr 21, 2014
Messages
21
Points
0
Use for exemple
$timestamp1 = strtotime('22-09-2008');
$timestamp2 = strtotime('27-12-2008');
$res = $timestamp2 - $timestamp1
$date = date('m/d/Y', $ras);
 
Older Threads
Replies
2
Views
5,378
Replies
0
Views
2,011
Replies
3
Views
2,781
Replies
7
Views
4,707
Recommended Threads
Replies
16
Views
7,245
Replies
17
Views
8,490
Replies
6
Views
5,184

Latest Hosting OffersNew Reviews

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top