使用条件计算加班工时总数

时间:2012-06-07 09:20:50

标签: php javascript

需要你的帮助我的案例。

如何使用条件计算总加班工时? 示例:

使用输入类型

OT From <input type="text" name="ot_from">
OT To <input type="text" name="ot_to">
Total Hours <input type="text" name="total_hours">

工作日:08:00-17:00(正常工作日) 如果我工作到19.00,应该计算我加班2小时。

在我的规则中,从18.00 - 18.30不计算加班,因为这是休息时间。 所以应该是我的总加班时间是1.5而不是2小时。

有人可以给我一个解决方案吗? 感谢您的帮助。

谢谢。 大卫

2 个答案:

答案 0 :(得分:1)

这是你应该做的:

1将小时和分钟分成总分钟数。

str = "1:23" or other time value

time = parseInt(str.split(":")[0], 10)*60+parseInt(str.split(":")[1], 10)

2从开始时间减去完成时间 - 这将为您提供最终时间。

3要将分钟转换为小时,请执行以下操作:

minutes = time%60

hours = parseInt(time/60, 10)

您实际上并不需要PHP - 只要您不想将数据存储在数据库或其他任何内容中,这一切都可以通过Javascript完成。

答案 1 :(得分:0)

如果要确保用户的输入始终相等,则应使用“选择”框替换输入字段。然后,您可以为小时制作一个选择框,为分钟制作一个。

要计算工作时间,您可以进行如下基本计算:

<?php
// Vars of the POST form
$otfrom_hours   = $_POST['ot_from_hours'];
$otfrom_minutes = $_POST['ot_from_minutes'];
$otto_hours     = $_POST['ot_to_hours'];
$otto_minutes   = $_POST['ot_to_minutes'];

// Make a full string for strtotime
$otfrom_string  = $otfrom_hours.":".$otfrom_minutes;
$otto_string    = $otto_hours.":".$otto_minutes;

// Basic calculation
$start          = strtotime($otfrom_string);
$end            = strtotime($otto_string);
$elapsed        = $end - $start;
echo date("H:i", $elapsed);
?>

希望它会有用!