开发者

Is there a way to know the mysql server timezone using php?

开发者 https://www.devze.com 2023-02-14 02:19 出处:网络
Is there a way to know 开发者_JS百科the mysql server timezone using php?SELECT @@global.time_zone

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()

0

精彩评论

暂无评论...
验证码 换一张
取 消