本文整理汇总了PHP中TimeHelper::zeroClockTimeOfDay方法的典型用法代码示例。如果您正苦于以下问题:PHP TimeHelper::zeroClockTimeOfDay方法的具体用法?PHP TimeHelper::zeroClockTimeOfDay怎么用?PHP TimeHelper::zeroClockTimeOfDay使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TimeHelper
的用法示例。
在下文中一共展示了TimeHelper::zeroClockTimeOfDay方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_start_time
/**
* 获取增配开始时间
* @return [$start_time, $is_nextday]
*/
public static function get_start_time($now = null)
{
if (empty($now)) {
$now = time();
}
$week_n = date('N', $now);
$is_afternoon = $now > strtotime(date('Y-m-d', $now) . ' 13:00:00');
if (in_array($week_n, [6, 7]) || $week_n == 5 && $is_afternoon) {
$start_time = TimeHelper::zeroClockTimeOfDay(strtotime("+" . (8 - $week_n) . " day", $now));
$is_nextday = true;
} else {
if ($week_n < 5 && $is_afternoon) {
$start_time = TimeHelper::zeroClockTimeOfDay(strtotime("+1 day", $now));
$is_nextday = true;
} else {
$start_time = TimeHelper::zeroClockTimeOfDay($now);
$is_nextday = false;
}
}
return ["start_time" => $start_time, "is_nextday" => $is_nextday];
}