Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获取东部时区并将其设置为变量,然后在“if”语句中使用它?
在我的一张表中,我有一个名为 gameEasternTime 的日期时间列。值如下所示“2013-09-22 20:30:00”
仅当东部时间晚于我的 gameEasternTime 列中列出的时间时,我才需要显示 html div。
if ( $easternTime > schedule[gameEasternTime] ) { echo ' <div> '; }
使用date_default_timezone_set('America/New_York')和DateTime::format。是的,这些是链接。