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.
我可以看到phpinfo()我的服务器的默认时区和它的date.timezone指令不同步。
phpinfo()
我知道我可以通过使用获取默认时区date_default_timezone_get()的值,但是我们如何在运行时获取date.timezone的值?
date_default_timezone_get()
您可以使用以下ini_get()功能获取时区:
ini_get()
ini_get('date.timezone');
顺便说一句,您应该始终在脚本开头设置默认时区。你可以这样做:
date_default_timezone_set(ini_get('date.timezone'));