Convert date string to UTC time with PHP

后端 未结 2 539
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-24 08:28

I have the following date string

$date=\"Sat Apr 30 2011 18:47:47 GMT+0900 (Tokyo)\"

I want to convert it to UTC time

$timesta         


        
2条回答
  •  礼貌的吻别
    2021-01-24 09:19

    You should use gmdate() instead of date() (or you could check the DateTime and DateTimeZone classes in PHP 5.2 / 5.3)

提交回复
热议问题