|
|
Thursday Nov 30, 2006 This is a little old function I have made, but up-to now it is very useful for me to include in many place: if you pass start date and end date to this function it will tell you how many days are pending or how many days are more. the result will be depending on your hand.
function SafdateDiff($dformat, $endDate, $beginDate){ //send yyyy-mm-dd start and end get the number of days $date_parts1=explode($dformat, $beginDate); $date_parts2=explode($dformat, $endDate); $start_date=gregoriantojd($date_parts1[1], $date_parts1[2],$date_parts1[0]); $end_date=gregoriantojd($date_parts2[1], $date_parts2[2],$date_parts2[0]); return $end_date - $start_date; }
Description: I don't think I have to explain this, there is nothing to explain on this. He he.
Author: Safras Ahamed
|