可能重复:
如何将 Unix 时间戳转换为 hhmmss?
我的时间戳格式为:
1330559989
如何检查时间戳中的小时数在 6 小时到 23 小时之间?
有人能帮助我吗?
$hrs=date('H', 1330559989);
if ($hrs>= 6 && $hrs<= 23) {
// your code
}
如果要检查从现在到给定时间戳之间的时间,则可以使用:
<?php
echo date("H", strtotime(now)-1330559989); // Displays the difference from now.
echo date("H", 1330559989); // Displays that time!
?>
希望这可以帮助!:)