PHP date ("y-m-d h:i:s"); Get current time Difference 8-hour solution (GO)
PHP date ("y-m-d h:i:s"); Get the current time difference 8-hour solution
(EXT) http://subin.org.cn/blog/post/430.html
why:?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
??????? From php5.1.0 onwards, php.ini riga date.timezone This option, and by default it is the time to display (no matter what PHP command) is Greenwich Mean Time and our time (Beijing time) The difference is exactly 8 hours.
??????? About timezone Mainland China available values are: asia/chongqing, Asia/shanghai, Asia/urumqi, PRC (Chongqing, Shanghai, Urumqi, PRC) Taiwan available: Asia/macao, asia/ Hong_Kong, Asia/taipei (Macau, Hong Kong, Taipei) and Singapore: Asia/singapore Other: Etc/gmt-8, Singapore, Hongkong
Workaround One:
??????? Add time before inserting:CODE: (as if not added)? Date_default_timezone_set (PRC);
Workaround Two:
??????? echo Date ("Y-m-d h:i:s",? ) Time () +8*60*60);
Workaround three (Modify the php.ini file):
??????? Find the ";d Ate.timezone =" line in php.ini, will ";" Remove, change to "Date.timezone = PRC" (Prc:people's Republic of China), restart Apache, problem solved.
?
Attached: Date time format
Date ("y-m-d h:i:s"); Format displayed: Year-month-day hours: minutes: seconds
Relevant time parameters:
A-"AM" or "PM"?
A-"AM" or "PM"?
D-A few days, two digits, if less than two is the front 0; such as: "01" to "31"?
D-Days of the week, three English letters; such as: "Fri"?
F-month, full name in English; such as: "January"?
H-12 hours of the hour; such as: "01" to "12"?
H-hour of 24-hour system; such as: "00" to "23"?
G-12 hours of the hour, less than two digits do not fill 0; such as: "1" to 12 "?
G-24 hours of the hour, less than two does not fill 0; such as: "0" to "23"?
I-minute; such as: "00" to "59"?
J-A few days, two digits, if less than two bits do not fill 0; such as: "1" to "31"?
L-Day of the week, English full name; such as: "Friday"?
M-month, two digits, if less than two digits in front of 0; such as: "01" to "12"?
N-month, two digits, if less than two digits does not fill 0; such as: "1" to "12"?
M-month, three letters of English; such as: "Jan"?
S-second; such as: "00" to "59"?
S-End With English ordinal number, two English letters; such as: "th", "nd"?
T-the number of days in the specified month; such as: "28" to "31"?
U-The total number of seconds?
W-Number of days of the week, such as: "0" (Sunday) to "6" (Saturday)?
Y-year, four digits; such as: "1999"?
Y-year, two digits; such as: "99"?
Z-the day ordinal of a year; such as: "0" to "365"