PHP实现分时段计费

1、使用递归方法实现

/**
     * 递归回调函数实现计费
     * @param $start 开始时间戳
     * @param $end  结束时间戳
     * @param $price  [{"start":"00:00:00","end":"12:00:00","price":1000},{"start":"12:00:00","end":"24:00:00","price":1500}]
     * @param $deep
     * @return float
     */
    public function test($start, $end, $price, $deep) {
        global $total;
        if ($deep > 100) {
            log_message('info', '出现了超过100天的数据.' . __FUNCTION__ . '>>>' . $price);
            return $total;
        }
//第一次的开始时间戳
        $at = strtotime(date('Y-m-d', $start) . ' ' . $price[0]['end']);//第一次的结束时间戳
        $et = strtotime(date('Y-m-d', $start) . ' ' . $price[1]['end']);//计费结束的时间戳

        if ($end >= $et) {
            $new_start = $et;
            $new_end = $end;
            $deep = $deep + 1;
            $end = $et;
        }
        //1,开始时间,结束时间在第一段中
        if ($start < $at && $end <= $at) {
            $hour = ceil(($end - $start) / 3600);
            $total += $price[0]['price'] * $hour;
        }
        //2,开始时间第一段,结束时间第二段
        if ($start < $at && $end > $at && $end <= $et) {
            $one = ceil(($at - $start) / 3600) * $price[0]['price'];
            $two = ceil(($end - $at) / 3600) * $price[1]['price'];
            $total += $one + $two;
        }

        //4,开始时间,结束时间都在第二段
        if ($start >= $at && $end <= $et) {
            $hour = ceil(($end - $start) / 3600);
            $total += $price[1]['price'] * $hour;
        }

        if (isset($new_end) && isset($new_start)) {
            unset($start);
            unset($end);
            unset($at);
            unset($et);
            $this->test($new_start, $new_end, $price, $deep);
        }

        return $total;
    }

2、使用时间偏移计算

/**
     * 以格林泥治时间为中心,计算差值
     * @param $start  开始时间戳
     * @param $end  结束时间戳
     * @param $price [{"start":"00:00:00","end":"12:00:00","price":1000},{"start":"12:00:00","end":"24:00:00","price":1500}]
     * @return float|int
     */
    public function test2($start, $end, $price) {
        $date1 = $start + 8 * 3600;
        $date2 = $end + 8 * 3600;
        $dt1 = 86400 - ($date1 % 86400);
        $dt2 = $date2 % 86400;
        $gap = $date2 - $date1 - $dt1 - $dt2;
        $parsed = date_parse($price[0]['end']);
        $one = $parsed['hour'] * 3600 + $parsed['minute'] * 60 + $parsed['second'];
        $two = 86400 - $one;
        $one_p = ($one / 3600) * $price[0]['price'];
        $two_p = ($two / 3600) * $price[1]['price'];
        $total = ($gap / 86400) * ($one_p + $two_p);
        if ($dt1 > $two) {
            $total += $two_p;
            $total += ceil(($dt1 - $two) / 3600) * $price[0]['price'];
        } else {
            $total += ceil($dt1 / 3600) * $price[1]['price'];
        }

        if ($dt2 > $one) {
            $total += $one_p;
            $total += ceil(($dt2 - $one) / 3600) * $price[1]['price'];
        } else {
            $total += ceil($dt2 / 3600) * $price[0]['price'];
        }
        return $total;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

RenBingo

一点一滴源于你的鼓励

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

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

打赏作者

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

抵扣说明:

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

余额充值