5

假设我有以下日期/日期时间。我怎样才能最好地分辨哪些是在午夜(即时间是 00:00:00)?第一个不应该是午夜,但接下来的三个应该是。谢谢

$d1=new DateTime('12/10/2012 05:33');
$d2=new DateTime('12/10/2012');
$d3=new DateTime('12/10/2012 00:00');
$d4=new DateTime('12/10/2012 00:00:00');
4

3 回答 3

13

检查小时和分钟是否都为零:

if( $date->format( 'H') == 0 && $date->format( 'i') == 0) {
    echo "Midnight!";
}
于 2013-01-24T17:52:18.040 回答
1

您必须指定时区并使用 DateTime

$test = new DateTime('NOW', new DateTimeZone('Asia/Kolkata'));
$h=$test->format('H');
$m=$test->format('i');
$s=$test->format('s');
if( $h == 0 && $m==0 && $s == 0) {
    echo "Midnight!";
}
于 2017-06-07T08:17:07.483 回答
0

您可以使用正则表达式或类型转换检查相关部分是否仅包含 0:

    $string = $dateTime->format('Hisu');

    $isMidnight = preg_match('/^0+$/usD', $string);
    $isMidnight = !(int) $string;

您可以使用格式设置粒度,所以

  • Hisu精确到微秒,
  • His精确到秒,
  • Hi精确到分钟,
  • H精确到小时。
于 2017-03-07T04:30:57.733 回答