本文摘自PHP中文网,作者藏色散人,侵删。
centos php时间设置的方法:首先注释掉“ZONE="America/New_York"”;然后修改系统时区;接着在php.ini中进行时区设置,设置“date.timezone = PRC”;最后通过crontab将时间同步即可。

推荐:《PHP视频教程》《centos教程》
修改 linux 时区时间和 php 时区
问题:客户美国服务器时间不对
第一步,先修改硬件时区。
1 2 | vim /etc/sysconfig/clock
将 ZONE= "America/New_York" 注释,加多一行 ZONE= "Asia/Shanghai"
|
第二步,修改系统时区
1 2 3 4 5 6 7 8 | cp /etc/localtime /etc/localtime.bak
rm -rf /etc/localtime
ln -svf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
yum install ntpdate -y
ntpdate 0.centos.pool.ntp.org
date
clock -w #将目前 Linux 的时间写到 BIOS 里面去!
clock -r #检查 BIOS 里面的时间
|
第三步,修改 php.ini 的时区设置
第四步,写个 crontab 将时间同步(特殊情况下,加上这个)
1 2 | #Ansible: Time synchronization
00 01 * * * /usr/sbin/ntpdate 0.centos.pool.ntp.org >/dev/null
|
怎样设置每次开机同步一次时间
1 2 3 4 | vim /etc/rc.local
usr/sbin/ntpdate 0.centos.pool.ntp.org >/dev/null
--------------------------------------------------------------------------------------------------
|
上面是设置 centos6.5 的时区和时间的,下面说的是 centos7的
1 2 3 4 5 6 | yum -y install ntp
systemctl enable ntpd
ntpdate -u cn.pool.ntp.org
systemctl start ntpd
#设置时区
timedatectl set-timezone Asia/Shanghai
|
以上就是centos php时间设置的方法的详细内容,更多文章请关注木庄网络博客!
相关阅读 >>
CentOS怎么才能上网
CentOS无法启动docker的解决方法
CentOS 怎么启动图形界面?
CentOS系统怎么设置网卡开机自启
nginx怎么输出php错误日志
CentOS下ftp上传文件出现中文乱码怎么解决
CentOS下怎么安装deb格式软件包
如何解决CentOS启动dhcp失败的问题
CentOS怎么修改文件
CentOS系统启动tomcat提示权限不够
更多相关阅读请进入《CentOS》频道 >>
转载请注明出处:木庄网络博客 » centos php时间设置的方法