如何获得Joomla 3的全球期权SEF?搜索一整天都没找到。 这是为Joomla 1.5需要同样的第3次
$config =& JFactory::getConfig();
echo 'Site name is ' . $config->getValue( 'config.sitename' );
答案 0 :(得分:2)
在Joomla 3.x中,JRegistry::getValue()
已被删除,因此请改用JRegistry::get()
。
简而言之,以下是您需要使用的代码:
$config = JFactory::getConfig();
echo 'Site name is ' . $config->get( 'sitename' );