1. 程式人生 > >Linux+PHP設定北京時間

Linux+PHP設定北京時間

PHP設定北京時間
#vi /etc/php.ini
在[PHP]下加一行
date.timezone=PRC

Linux下設定時間

CentOS6.5

1、編輯配置檔案
#vi /etc/sysconfig/clock
確定如下內容:
ZONE="Asia/Shanghai"
UTC=false
ARC=false

2、時區設定為上海
#ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

3、對準時間
#yum install ntp
#ntpdate asia.pool.ntp.org

4、硬體時間與系統時間一致
#/sbin/hwclock --systohc

Centos7

檢視時區
#timedatectl

設定時區
#timedatectl set-timezone Asia/Shanghai