只有一个问题:是否可以比较日期时间格式和时间格式?
我有表格employee_attendance
(日期时间类型)和表格employee_schedule
(时间类型),这是为了确定员工是否迟到。
请查看我的代码。
$CheckInNew = strtotime('2013-06-05 08:47:53');
$OnDutyTimeNew = strtotime('08:00:00');
if($CheckIn > $OnDutyTimeNew){
// confirming that the employee is late
} else {
// confirming that the employee is NOT late
}
有任何想法吗?
谢谢