Is there a way to know the mysql server timezone using php?
Is there a way to know 开发者_JS百科the mysql server timezone using php?
SELECT @@global.time_zone
http://dev.mysql.com/doc/refman/5.5/en/time-zone-support.html
According to the docs:
SELECT @@global.time_zone, @@session.time_zone;
mysql> SELECT @@global.time_zone, @@session.time_zone;
Manual
Just wrap this in mysql_query()
精彩评论