php convert datetime to UTC

后端 未结 16 1031
無奈伤痛
無奈伤痛 2020-11-27 12:30

I am in need of an easy way to convert a date time stamp to UTC (from whatever timezone the server is in) HOPEFULLY without using any libraries.

16条回答
  •  遥遥无期
    2020-11-27 12:38

    With PHP 5 or superior, you may use datetime::format function (see documentation http://us.php.net/manual/en/datetime.format.php)

     echo strftime( '%e %B %Y' , 
        date_create_from_format('Y-d-m G:i:s', '2012-04-05 11:55:21')->format('U')
        );  // 4 May 2012
    

提交回复
热议问题