You are here

function cmfcCalendarV1Arabic::dateDiff in Calendar Systems 8.2

Same name and namespace in other branches
  1. 8 calendar/v1/calendarSystems/arabic.class.inc.php \cmfcCalendarV1Arabic::dateDiff()
  2. 6.3 calendar/v1/calendarSystems/arabic.class.inc.php \cmfcCalendarV1Arabic::dateDiff()
  3. 6 calendar/v1/calendarSystems/arabic.class.inc.php \cmfcCalendarV1Arabic::dateDiff()
  4. 7.3 calendar/v1/calendarSystems/arabic.class.inc.php \cmfcCalendarV1Arabic::dateDiff()
  5. 7 calendar/v1/calendarSystems/arabic.class.inc.php \cmfcCalendarV1Arabic::dateDiff()
  6. 7.2 calendar/v1/calendarSystems/arabic.class.inc.php \cmfcCalendarV1Arabic::dateDiff()

Overrides cmfcCalendarV1Plugin::dateDiff

File

calendar/v1/calendarSystems/arabic.class.inc.php, line 698

Class

cmfcCalendarV1Arabic

Code

function dateDiff($first, $second) {

  /*
  $first_date = explode("-",$first);
  $first_date = parent::mktime(0, 0, 0, $first_date[1],$first_date[2], $first_date[0]);
  //echo $first_date[1];
  $second_date = explode("-",$second);
  $second_date = parent::mktime(0, 0, 0,$second_date[1],$second_date[2], $second_date[0]);
  $totalsec=$second_date- $first_date;
  return $totalday = round(($totalsec/86400));
  */
}