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.
我创建了一个位于澳大利亚的 WordPress 网站。我的date()功能有问题。如下所示的错误消息。我已将默认时区设置为澳大利亚/墨尔本,但我仍然收到错误消息。
date()
你是如何设置时区的?如果您正在使用该date_default_timezone_set()功能,那么您需要将其放在您网站的每个页面上。在 WordPress 网站上执行此操作的最佳方法是在以下位置添加一行wp-config.php:
date_default_timezone_set()
wp-config.php
date_default_timezone_set( 'Australia/Melbourne' );
但是,设置默认时区的最佳方法是添加一行php.ini:
php.ini
date.timezone = Australia/Melbourne