gpt4 book ai didi

php - 比较时间范围并计算时间差

转载 作者:行者123 更新时间:2023-11-30 01:33:31 25 4
gpt4 key购买 nike

我想确定给定的日期时间值是否在时间范围内,然后将 $actual_dateOut 和 $range_dateOut 之间的时间差插入数据库。

数据示例:

$actual_dateIn  = "2013-06-01 06:54:00" 
$actual_dateOut = "2013-06-01 19:20:00"

$range_dateIn = "08:00:00"
$range_dateOut = "18:00:00"

这是我到目前为止所做的:

 date_default_timezone_set("UTC");
$dateIn = date($actual_dateIn, time());
$dateOut = date($actual_dateOut, time());


if($dateIn <= strtotime($range_dateIn) && $dateOut <= strtotime($range_dateOut))
{
$ot = $range_dateOut->diff($strtotime($actual_dateOut));
$hours = $ot->h;


$sql_insert = "INSERT INTO tbl_ot (id, fDate, shiftCode, ot )
VALUES ('$id', '$actual_dateIn', '$shift', '$hours')";

$result_ot = mysql_query($sql_insert);
}

但它不会计算 $actual_dateOut 和 $range_dateOut 之间的差异。

最佳答案

您可以通过以下方式执行此操作(选中):注意力:1. 这段代码中$shift为空。2.您需要决定如何将time_difference以秒为单位转换为小时

$actual_dateIn  = "2013-06-01 06:54:00";
$actual_in_arr = explode(' ', $actual_dateIn);

$actual_dateOut = "2013-06-01 17:20:00";
$actual_out_arr = explode(' ', $actual_dateOut);

$actual_in_time = strtotime(date('Y-m-d').' '.$actual_in_arr[1]);
$actual_out_time = strtotime(date('Y-m-d').' '.$actual_out_arr[1]);

$range_dateIn = "08:00:00";
$range_dateOut = "18:00:00";
$range_in_time = strtotime(date('Y-m-d').' '.$range_dateIn);
$range_out_time = strtotime(date('Y-m-d').' '.$range_dateOut);

if($actual_in_time <= $range_in_time && $actual_out_time <= $range_out_time)
{
$time_difference = $range_out_time - $actual_out_time;
$hours = round( $time_difference/60/60, 2 );
$sql_insert = "INSERT INTO tbl_ot (id, fDate, shiftCode, ot )
VALUES ('$id', '$actual_dateIn', '$shift', '$hours')";
$result_ot = mysql_query($sql_insert);
}

关于php - 比较时间范围并计算时间差,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17184482/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com