有人知道如何在Joomla 3.1中获得系统时区偏移吗?我尝试过以下方法:
return JFactory::getConfig()->getValue('offset');
但这会导致以下错误:
Fatal error: Call to undefined method JRegistry::getValue()
感谢您指出正确方向的任何信息......
答案 0 :(得分:2)
试试这个:
$config = JFactory::getConfig();
$offset = $config->get('offset');
答案 1 :(得分:0)
尝试:
$timezone = new DateTimeZone(JFactory::getConfig()->get('offset'));
$offset = $timezone->getOffset(new DateTime)/3600;