centos php에서 시간을 설정하는 방법: 먼저 "ZONE="America/New_York""를 주석 처리한 다음 시스템 시간대를 수정하고 php.ini에서 시간대를 설정하고 마지막으로 "date.timezone = PRC"를 설정합니다. crontab을 사용하여 시간을 동기화하세요.
권장: "PHP 비디오 튜토리얼" "centos 튜토리얼"
Linux 시간대 시간 및 PHP 시간대 수정
문제: 고객의 미국 서버 시간이 잘못되었습니다
첫 번째 단계 하드웨어 첫 번째 시간대를 수정하는 것입니다.
vim /etc/sysconfig/clock 将 ZONE="America/New_York" 注释,加多一行 ZONE="Asia/Shanghai"
두 번째 단계, 시스템 시간대 수정
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의 시간대 설정 수정
date.timezone = PRC
네 번째 단계, crontab을 작성하여 시간을 동기화합니다. (특수한 경우 이를 추가합니다.)
#Ansible: Time synchronization 00 01 * * * /usr/sbin/ntpdate 0.centos.pool.ntp.org >/dev/null
컴퓨터를 켤 때마다 동기화되는 시간을 설정하는 방법
vim /etc/rc.local usr/sbin/ntpdate 0.centos.pool.ntp.org >/dev/null --------------------------------------------------------------------------------------------------
위는 centos6.5의 시간대와 시간을 설정하는 것이고, 다음은 centos7의 경우
yum -y install ntp systemctl enable ntpd ntpdate -u cn.pool.ntp.org systemctl start ntpd #设置时区 timedatectl set-timezone Asia/Shanghai
위 내용은 Centos PHP 시간 설정 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!