Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Joomla 3 のグローバル オプション SEF を取得するには? 一日中検索しても何も見つかりませんでした。これは、Joomla 1.5 が 3 番目に同じ必要があるためです。
$config =& JFactory::getConfig(); echo 'Site name is ' . $config->getValue( 'config.sitename' );
Joomla 3.x では、JRegistry::getValue()が削除されたので、JRegistry::get()代わりに使用します。
JRegistry::getValue()
JRegistry::get()
簡単に言えば、使用する必要があるコードは次のとおりです。
$config = JFactory::getConfig(); echo 'Site name is ' . $config->get( 'sitename' );