Set time in php to 00:00:00

后端 未结 4 710
名媛妹妹
名媛妹妹 2021-02-08 10:40

I need to display the time but it must start from 00:00:00? I\'ve got the following but it uses the current time.

print(date(\"H:i:s\"));
相关标签:
4条回答
  • 2021-02-08 11:24

    As an alternative to mktime(), try the newer DateTime class, eg

    $dt = new DateTime;
    $dt->setTime(0, 0);
    echo $dt->format('H:i:s');
    
    // Add one hour
    $dt->add(new DateInterval('PT1H'));
    echo $dt->format('H:i:s');
    

    Update

    The flexibility of DateInterval makes this a very good candidate for a timer, eg

    // add 2 years, 1 day and 9 seconds
    $dt->add(new DateInterval('P2Y1DT9S'));
    
    0 讨论(0)
  • 2021-02-08 11:29

    Use mktime() if you want to start with midnight for the current date:

    <?php
    
    echo date('l jS \of F Y h:i:s A',mktime(0,0,0));
    
    ?>
    

    OUTPUTS

    Friday 14th of October 2011 12:00:00 AM
    

    http://codepad.org/s2NrVfRq

    In mktime(), you pass arguments for hours, minutes, seconds, month, day, year, so set hours, minutes, seconds to 0 to get today at midnight. (Note, as Phil points out, mktime()'s arguments are optional and you can leave month, day, year out and it will default to the current date).

    The mktime() function returns a unix timestamp representing the number of seconds since the unix epoch (January 1, 1970). You can count up from it in seconds or multiples of seconds.

    <?php
    
    // $midnight = mktime(0,0,0,date('m'),date('d'),date('Y'));
    // The above is equivalent to below
    $midnight = mktime(0,0,0);
    
    echo date('l jS \of F Y h:i:s A',$midnight)."\n";
    echo date('l jS \of F Y h:i:s A',$midnight+60)."\n"; // One minute
    echo date('l jS \of F Y h:i:s A',$midnight+(60*60))."\n"; // One hour
    
    ?>
    

    OUTPUTS

    Friday 14th of October 2011 12:00:00 AM
    Friday 14th of October 2011 12:01:00 AM
    Friday 14th of October 2011 01:00:00 AM
    

    http://codepad.org/FTr98z1n

    0 讨论(0)
  • 2021-02-08 11:33

    date() uses the current time when you don't pass in an explicit timestamp. See the optional argument in the date documentation.

    If you want to explicitly format midnight, use:

    date("H:i:s", mktime(0, 0, 0));
    
    0 讨论(0)
  • 2021-02-08 11:42

    try to use this syntax:

    print(date("H:i:s", 0));
    

    or

    print(date("H:i:s", 10)); // 10 seconds
    
    0 讨论(0)
提交回复
热议问题