Joomla 3.1:如何获得时区偏移量?

时间:2013-09-26 20:51:28

标签: joomla timezone-offset

有人知道如何在Joomla 3.1中获得系统时区偏移吗?我尝试过以下方法:

    return JFactory::getConfig()->getValue('offset');

但这会导致以下错误:

    Fatal error: Call to undefined method JRegistry::getValue()

感谢您指出正确方向的任何信息......

2 个答案:

答案 0 :(得分:2)

试试这个:

$config = JFactory::getConfig();
$offset = $config->get('offset');

答案 1 :(得分:0)

尝试:

$timezone = new DateTimeZone(JFactory::getConfig()->get('offset'));
$offset   = $timezone->getOffset(new DateTime)/3600;