Returns the number of days between to valid dates.
function DaysBetween($startdate,$enddate) {
$start = strtotime($startdate);
$end = strtotime($enddate);
$days_between = floor(abs($end - $start) / 86400);
return $days_between;
}
Returns the number of days between to valid dates.
function DaysBetween($startdate,$enddate) {
$start = strtotime($startdate);
$end = strtotime($enddate);
$days_between = floor(abs($end - $start) / 86400);
return $days_between;
}
Returns the number of Sundays between to valid dates.
Returns a full textual representation of the day of the week for the first day of the month for a valid month/year […]
Returns the number of week-days between two valid dates.
Returns a full textual representation of the day of the week for the last day of the month for a valid month/year […]