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.
我在 php.ini 中将时区设置为非洲/约翰内斯堡 (+2GMT)。getdate说小时是 0。小时实际上是 3,如果它仍然停留在 UTC,它会说上午 11 点。我改变了我的电脑时间,它仍然无法正常工作。还有什么可能导致这种情况?
getdate
使用date_default_timezone_set
例如:
date_default_timezone_set('Africa/Johannesburg');