PHP计算指定时间段内周末天数(星期日天数)、双休天数、总工作日天数

/** 
 * | @param char|int $start_date 一个有效的日期格式,例如:20091016,2009-10-16 
 * | @param char|int $end_date 同上 
 * | @param int $weekend_days 一周休息天数 
 * | @return array 
 * | array[total_days]  给定日期之间的总天数 
 * | array[total_relax] 给定日期之间的周末天数 
*/ 
function get_weekend_days($start_date, $end_date, $weekend_days=1) { 
 
    $data = array(); 
    if (strtotime($start_date) > strtotime($end_date)) list($start_date, $end_date) = array($end_date, $start_date); 
 
    $start_reduce = $end_add = 0; 
    $start_N      = date('N',strtotime($start_date)); 
    $start_reduce = ($start_N == 7) ? 1 : 0; 
 
    $end_N = date('N',strtotime($end_date)); 
 
    // 进行单、双休判断,默认按单休计算 
    $weekend_days = intval($weekend_days); 
    switch ($weekend_days) 
    { 
        case 2: 
            in_array($end_N,array(6,7)) && $end_add = ($end_N == 7) ? 2 : 1; 
            break; 
        case 1: 
        default: 
            $end_add = ($end_N == 7) ? 1 : 0; 
            break; 
    } 
     
    $days = round(abs(strtotime($end_date) - strtotime($start_date))/86400) + 1; 
    $data['total_days'] = $days; 
    $data['total_relax'] = floor(($days + $start_N - 1 - $end_N) / 7) * $weekend_days - $start_reduce + $end_add; 
 
    return $data; 
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

凯鑫BOSS

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值