本文介绍了数据库时区的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在单个cpanel(Phpmyadmin)上为不同的数据库设置不同的时区.我不知道如何为不同的数据库设置不同的时区.请帮我..有没有可能,
I want to set different timezone for different database on a single cpanel(Phpmyadmin).I don't know how to set different timezone for different database.Please help me .. it is possible or not,
预先感谢...
推荐答案
如果使用的是PHP/MYSQL.将以下代码放在页面或索引页面的顶部.
If you are using PHP / MYSQL. Place the following code at top of the page or index page.
date_default_timezone_set('timezone_name');
示例America/New_York
仅MySQL(仅适用于当前会话)
Only MySQL (works only for current session)
mysql> SET time_zone = 'timezone_name';
全球变革
mysql> SET GLOBAL time_zone = 'timezone_name';
希望这会有所帮助.谢谢!
Hope this helps. Thanks!!
这篇关于数据库时区的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!