How can we know the number of days between two given dates
using PHP?
How can we know the number of days between two given dates
using MySQL?
Answer Posted / jitendra jhariya and sandeep s
function dateDiff($dformat, $endDate, $beginDate)
{
$date_parts1=explode($dformat, $beginDate);
$date_parts2=explode($dformat, $endDate);
$start_date=gregoriantojd($date_parts1[0], $date_parts1[1],
$date_parts1[2]);
$end_date=gregoriantojd($date_parts2[0], $date_parts2[1],
$date_parts2[2]);
return $end_date - $start_date;
}Now let us see how we use this function:$date1="07/11/2003";
$date2="09/04/2004";print "If we minus " . $date1 . " from "
. $date2 . " we get " . dateDiff("/", $date2, $date1) .
".";which generates If we minus 07/11/2003 from 09/04/2004
we get 421.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is difference between php and wordpress?
How to track user logged out or not? When user is idle?
What does php exit do?
which will print out the php call stack?
What is the use of limit in mysql?
What is the use of the function htmlentities?
How to block direct directory access in PHP?
What is the use session in php?
What is PHP? Who is the father or inventor of PHP?
Tell me what is the difference between get and post?
How to connect to mysql from a php script?
Which parts of php are case sensitive?
What is the difference between html and php?
Where is session value stored?
Is php 5.6 secure?