服务器:liunx+CentOS 7.6
当我在新服务器配置好环境运行php项目时,出现如下警告:
date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone.
时区问题,找了问题都是说修改php.ini的date.timezone可以解决,date.timezone = Asia/Shanghai
我打开了我的php.ini发现本来就是这个,再找解决方案,后来修改服务器的时区
sudo timedatectl set-timezone Asia/Shanghai
//查看当前服务器时区:
timedatectl status
警告
执行命令:sudo timedatectl set-local-rtc 0(关闭硬件时钟校时)
解决,记录一下