Home > Backend Development > PHP Tutorial > 修改linux系统时间与php同步问题

修改linux系统时间与php同步问题

WBOY
Release: 2016-06-23 13:35:18
Original
910 people have browsed it

问题:php网页时间与本地机时间不相符,

差八个小时或者显示的是Wed May  6 16:17:44 EDT 2015。要更改为Wed May  6 16:48:12 CST 2015。

1,修改为重庆的时区:

查看当前时区

date

cp -vf /usr/share/zoneinfo/Asia/Chongqing  /etc/localtime

vim /etc/sysconfig/clock

ZONE="Asia/Chongqing" 

UTC=true 

ARC=false

查看修改后的时区

date

 

2,修改日期时间:

只修改日期,输入:date -s 2007-08-03

只修改时间,输入:date -s 14:15:00  

同时修改日期时间,注意要加双引号,日期与时间之间有一空格,输入:

date -s "2007-08-03 14:15:00"

修改完后,把系统时间写入CMOS,硬件时钟,以免重启后失效,输入:clock -w

时间域

  % H 小时(00..23)

  % I 小时(01..12)

  % k 小时(0..23)

  % l 小时(1..12)

  % M 分(00..59)

  % p 显示出AM或PM

  % r 时间(hh:mm:ss AM或PM),12小时

  % s 从1970年1月1日00:00:00到目前经历的秒数

  % S 秒(00..59)

  % T 时间(24小时制)(hh:mm:ss)

  % X 显示时间的格式(%H:%M:%S)

  % Z 时区 日期域

  % a 星期几的简称( Sun..Sat)

  % A 星期几的全称( Sunday..Saturday)

  % b 月的简称(Jan..Dec)

  % B 月的全称(January..December)

  % c 日期和时间( Mon Nov 8 14:12:46 CST 1999)

  % d 一个月的第几天(01..31)

  % D 日期(mm/dd/yy)

  % h 和%b选项相同

  % j 一年的第几天(001..366)

  % m 月(01..12)

  % w 一个星期的第几天(0代表星期天)

  % W 一年的第几个星期(00..53,星期一为第一天)

  % x 显示日期的格式(mm/dd/yy)

  % y 年的最后两个数字( 1999则是99)

  % Y 年(例如:1970,1996等)

应用:

cdate=`date +'%Y%m%d%H%M%S'`

3,/etc/php.ini

4,同步时间服务器并加入计划任务

第三行数据,我用的是asia.pool.ntp.org时间同步服务器


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template