当前位置: 首页 > 图文教程 > 网络编程 > PHP > How do I change MySQL timezone?

PHP
使用TinyButStrong模板引擎来做WEB开发
用PHP控制用户的浏览器--ob*函数的使用说明
PHP操作文件方法问答
PHP编码规范-php coding standard
在PHP世界中选择最合适的模板与使用方法
PHP学习资料汇总与网址
PHP中session使用方法详解
PHP中cookies使用指南
对Session和Cookie的区分与解释
php的一个登录的类 [推荐]
php下使用无限生命期Session的方法
初级的用php写的采集程序
Discuz 5.0 中读取纯真IP数据库函数分析
php中文本操作的类
dedecms采集中可以过滤多行代码的正则表达式
dedecms防止FCK乱格式化你的代码的修改方法
收集的DedeCMS一些使用经验
dedecms模板标签代码官方参考
Dedecms V3.1 生成HTML速度的优化办法
PHP实现采集程序原理和简单示例代码

PHP 中的 How do I change MySQL timezone?


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 115 ::
收藏到网摘: n/a

The MySQL timezone is set to MST (-7 hours GMT/UTC) and is not configurable by you. MySQL is only capable of having 1 timezone setting per mysql daemon. Therefore, you cannot select NOW() and expect a result in a timezone other than MST.
However, there are ways for you to get results that are in your preferred timezone. First determine how many hours your desired timezone is off from MST. For example, EST is +2 hours. PST is -1 hour.
Knowing the time offset, you can replace all your SQL statements of

SELECT NOW();
with

SELECT DATE_ADD(NOW(), INTERVAL 2 HOUR);
which will give you an EST date result. For a result in PST, you would do:

SELECT DATE_SUB(NOW(), INTERVAL 1 HOUR);
If you are working with time in seconds instead of dates, then factor in the offset in seconds. Because there are 3600 seconds in an hour, and EST is 2 hours later than MST, the following converts timestamps from MST to EST:

SELECT unix_timestamp() + (3600 * 2);
SELECT FROM_UNIXTIME(UNIX_TIMESTAMP() + (3600 * 2));
See the MySQL Manual's Date and Time Functions for more information.
Depending on your application, you may also need to do one of the following (but not both):
1. Find every place in your code where a date or time is displayed to the browser and have a user defined function change it to add or subtract the appropriate number of hours before displaying it.
2. Find every place in your code where dates or times are input into your system and have a user defined function add or subtract the appropriate number of hours before storing it.