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
How does the identity operator === compare two values?
Is there an easy way to delete an element from a php array?
Explain me what is x+ mode in fopen() used for?
What is form validation in php?
What is full form of php? Who is the father or inventor of php?
What does mvc stand for and what does each component do?
Where php basically used?
What is difference between readonly and constant?
What is the difference between php and javascript?
What's the difference between accessing a class method via -> and via ::?
How to access a Static Member of a Class in PHP?
Why would we use === instead of ==?
What is singleton class in php?
What is the use of header in php?
How to get the directory name out of a file path name?