您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關php中怎么實現一個時間助手類,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
<?php namespace Helper; use app\common\model\Holiday; class DateHelper { /** * PHP計算兩個時間段是否有交集(邊界重疊不算) * @param string $beginTime1 開始時間1 * @param string $endTime1 結束時間1 * @param string $beginTime2 開始時間2 * @param string $endTime2 結束時間2 * @return bool */ public static function isTimeCross($beginTime1 = '', $endTime1 = '', $beginTime2 = '', $endTime2 = ''){ $status = $beginTime2 - $beginTime1; if ($status > 0){ $status2 = $beginTime2 - $endTime1; if ($status2 > 0){ return false; }elseif ($status2 < 0){ return true; }else{ return false; } }elseif($status < 0){ $status2 = $endTime2 - $beginTime1; if ($status2 > 0){ return true; }else if ($status2 < 0){ return false; }else{ return false; } }else{ $status2 = $endTime2 - $beginTime1; if ($status2 == 0){ return false; }else{ return true; } } } /** * 時間天數差 * @param $day1 * @param $day2 * @return float|int */ public static function diffBetweenTwoDays($day1, $day2) { $second1 = strtotime($day1); $second2 = strtotime($day2); if ($second1 < $second2) { $tmp = $second2; $second2 = $second1; $second1 = $tmp; } return ceil($second1 - $second2) / 86400; } /** * 時間格式化 * @param $date * @param string $format * @return false|string */ public static function dataFormat($date, $format = 'Y-m-d') { $date = is_numeric($date) ? $date : strtotime($date); return !$format ? $date : date($format, $date); } /** * 是否工作日 * @param $date * @return bool */ public static function isWorkingDay($date) { if (self::isWeekend($date)) { return false; } if (self::isHoliday($date)) { return false; } return true; } /** * 是否周末 * @param $date * @return bool */ public static function isWeekend($date) { return in_array(self::dataFormat($date,'w'),[6,0]); } /** * 是否節假日 * @param $date * @param bool $currentYear * @return bool */ public static function isHoliday($date,$currentYear = true) { $holiday = $currentYear ? Holiday::where('year','=',self::dataFormat($date,'Y'))->column('id','holiday_date') : Holiday::column('id','holiday_date'); return empty($holiday[self::dataFormat($date,'Y-m-d')]) ? false : true; } /** * 結束時間格式化 * @param $date * @param string $format * @return string */ public static function dateFormatOfEndTime($date, $format = 'Y-m-d') { $date = is_numeric($date) ? $date : strtotime($date); return date($format, $date) . ' 23:59:59'; } /** * 獲取多少天前的日期 * @param $date * @param $days * @param string $format * @return false|float|int|string */ public static function getBeforeDate($date, $days, $format = '') { $date = is_numeric($date) ? $date : strtotime($date); $date = $date - $days * 3600 * 24; return $format ? date($format, $date) : $date; } }
看完上述內容,你們對php中怎么實現一個時間助手類有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。