Lines Matching full:days
73 $dt_days = $dt_diff->days * ($dt_diff->invert ? -1 : 1);
88 $ldays= $this->getLang('days');
112 … //$renderer->doc .= ($difdata['days'] == 1) ? $this->getLang('oneday') : $this->getLang('days');
132 …, abs($difdata['days']), ($difdata['days'] == 1 ? $this->getLang('oneday') : $this->getLang('days'…
153 // compute date difference in days: 86400 = 24*60*60 = seconds of one day
160 'days' => abs(($difference)),
169 @ brief Business days between date1 and date2
173 …//The total number of days between the two dates. We compute the no. of seconds and divide it to 6…
175 $days = ($endDate - $startDate) / 86400 + 1;
177 $no_full_weeks = floor($days / 7);
178 $no_remaining_days = fmod($days, 7);
184 //-->The two can be equal in leap years when february has 29 days,
199 …//The no. of business days is: (number of weeks between the two dates) * (5 working days) + the re…