PHP DateTime::createFromFormat returning the wrong date

后端 未结 2 1069
情歌与酒
情歌与酒 2021-01-29 03:13

When trying to run createFromFormat using the Pacific/Auckland timezone and the format string \'F-Y\'. The date returned is the first of October even though I have

相关标签:
2条回答
  • 2021-01-29 03:49

    The reason for this behaviour is that when you don't specify the missing parts of a date/time input to DateTime::createFromFormat, it uses the values from the current local date and time. In Auckland, that is October 31st and so it tries to make a date out of September 31 2019, which comes out as October 1 2019. To avoid this problem, use a ! at the start of the format string; this will instead substitute values from January 1 1970, 00:00:00 (the Unix Epoch) as required for those that are not specified in the time value:

    echo DateTime::createFromFormat('!F-Y', 'September-2019')
        ->setTimeZone(new DateTimeZone('Pacific/Auckland'))
        ->format('Y-m-d');
    

    Output:

    2019-09-01
    

    Demo on 3v4l.org

    0 讨论(0)
  • 2021-01-29 04:06

    What about this my friend:

    date_default_timezone_set('Pacific/Auckland');
    
    $date = DateTime::createFromFormat('F-Y', 'September-2019');
    
    $new_date_format = $date->format('Y-m-01');
    
    echo $new_date_format;
    
    0 讨论(0)
提交回复
热议问题