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.
如何在我的时区返回当前时间?它总是以太快的速度返回一天。据说周六是周日。现在是下午 6:30,它说的是凌晨 1:30。我怎样才能解决这个问题?
设置默认时区date_default_timezone_set('UTC');并阅读手册。
date_default_timezone_set('UTC');
示例:UTC、GMT、大西洋/亚速尔群岛
在日期函数中使用此代码
date('g:i:s', time()-18000);
使用time()-18000你会修复它 祝你好运!