php get US/Eastern current time

前端 未结 5 1504
半阙折子戏
半阙折子戏 2020-12-13 15:55

I want to get current time of US/Eastern timezone. How would I achieve that.

I have tried following code but it is displaying my system\'s time.

<         


        
5条回答
  •  隐瞒了意图╮
    2020-12-13 16:16

    The easiest way is probably to use gmmktime() to get the Unix timestamp for the current GMT, then subtract 5 hours from it. That way you get Eastern Time no matter where the server happens to be.

提交回复
热议问题