什么最好的方式转换24小时的时间到秒,所以它可以用于比较if语句..
function HourMinuteToDecimal($hour_minute) { $t = explode(':',$hour_minute); return $t[0] * 60 + $t[1]; } echo HourMinuteToDecimal("23:30"); return 1410
如果您尝试将午夜时间(00:00)转换为秒,则无法正常工作.这是什么解决方案?
00:00,00:30,01:00,01:30等
if (HourMinuteToDecimal("01:30") > HourMinuteToDecimal("23:30")) { .. }
这不行.
要转换功能:
原文链接:https://www.f2er.com/php/131337.htmlfunction hoursToSecods ($hour) { // $hour must be a string type: "HH:mm:ss" $parse = array(); if (!preg_match ('#^(?<hours>[\d]{2}):(?<mins>[\d]{2}):(?<secs>[\d]{2})$#',$hour,$parse)) { // Throw error,exception,etc throw new RuntimeException ("Hour Format not valid"); } return (int) $parse['hours'] * 3600 + (int) $parse['mins'] * 60 + (int) $parse['secs']; }
写在飞行中,没有测试:-P
所以,你可以使用strtotime来使用一个标准运算符(==<> =< =!=等)来转换unix时间戳和comparte中的格式日期ex:
$t1 = "23:40:12"; $t2 = "17:53:04"; $h1 = strtotime("0000-00-00 $t1"); $h2 = strtotime("0000-00-00 $t2"); $h1 == $h2; // if are equals $h1 > $h2; // if h1 is mayor at h2 $h1-$h2; // dieference in seconds,etc.
等等..