How to calculate total hours:minutes attendance breaktime in Laravel?(如何计算总时数:分钟考勤休息时间?)
本文介绍了如何计算总时数:分钟考勤休息时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个$attendace
变量包含来自Laravel查询构建器的集合:
$attendance = collect(DB::table('attendance_copy')->where('emp_number', Auth::user()->emp_number)->where('date_created', $datenow)->get());
这是结果:
[
{
"row_id":65,
"emp_number":"IPPH0004",
"time_stamp":"01:00:00",
"attendance_status":"Punch In",
"date_created":"2021-10-02"
},
{
"row_id":68,
"emp_number":"IPPH0004",
"time_stamp":"07:30:00",
"attendance_status":"Start Break",
"date_created":"2021-10-02"
},
{
"row_id":69,
"emp_number":"IPPH0004",
"time_stamp":"08:00:00",
"attendance_status":"End Break",
"date_created":"2021-10-02"
},
{
"row_id":70,
"emp_number":"IPPH0004",
"time_stamp":"08:30:00",
"attendance_status":"Start Break",
"date_created":"2021-10-02"
},
{
"row_id":71,
"emp_number":"IPPH0004",
"time_stamp":"09:00:00",
"attendance_status":"End Break",
"date_created":"2021-10-02"
}
];
我到目前为止所做的(当只有1个start break
和end break
时有效):
$startbreak = strtotime(( isset( $attendance->where('attendance_status', 'Start Break')->first()->time_stamp ) == null ? "00:00:00" : $attendance->where('attendance_status', 'Start Break')->first()->time_stamp));
$endbreak = strtotime(( isset( $attendance->where('attendance_status', 'End Break')->first()->time_stamp ) == null ? "00:00:00" : $attendance->where('attendance_status', 'End Break')->first()->time_stamp));
$minsbreak = date('i',$endbreak - $startbreak);
但在我的例子中,每个员工全天都会记录很多休息时间。我想计算一下员工的休息时间:
从上面的集合(12hr格式)来看,它应该是01:00 total hrs
。从7:30 to 8:00 is 30mins
和8:30 to 9:00 is another 30mins
开始。将有5个最长中断时间。
这可能吗?或者我应该重新设计我的出席表?谢谢
推荐答案
此答案假定集合已由employee_number
筛选,并且Start Break
之后的状态必须为End Break
。
$total_break_time = 0;
for ($i = 0; $i < count($attendance); ++$i) {
if ($i == 0)
continue;
if ($attendance[$i-1]['attendance_status'] == 'Start Break') {
$previous_timestamp = strtotime($attendance[$i-1]['date_created'] . ' ' . $attendance[$i-1]['time_stamp']);
$current_timestamp = strtotime($attendance[$i]['date_created'] . ' ' . $attendance[$i]['time_stamp']);
$total_break_time += ($current_timestamp - $previous_timestamp);
}
}
echo gmdate('H:i:s', $total_break_time) . PHP_EOL;
$total_break_time
是秒数。gmdate
函数将其转换为小时、分钟、秒,返回01:00:00
。
这篇关于如何计算总时数:分钟考勤休息时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何计算总时数:分钟考勤休息时间?
基础教程推荐
猜你喜欢
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 使用 PDO 转义列名 2021-01-01