Skip to content

Instantly share code, notes, and snippets.

@jianghu52
Created June 14, 2014 09:20
Show Gist options
  • Save jianghu52/536c3cc6f4a28d0520c5 to your computer and use it in GitHub Desktop.
Save jianghu52/536c3cc6f4a28d0520c5 to your computer and use it in GitHub Desktop.
简单的一个算时间的小程序,主要是用于发日报用
<?php
date('H');
date('Y-m-d H:i:s');
$endTime_h = date('H');
$endTime_m = date('i');
echo $endTime_m;echo "<br/>";
if($endTime_m > 30){
$work_m = 0.5;
}else{
$work_m = 0;
}
echo $work_m;
$work_h = (int)$endTime_h - 10;
echo $work_h;
echo "<br/>";
$work_all = (int)$work_h + $work_m;
echo $work_all;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment