Joomlaデータベース構成のカスタム配列を作成する必要があるため、次のようにしています:
$config =& JFactory::getConfig();
$db['default']['hostname'] = $config->getValue('config.host');
しかし、エラーが発生しました: Fatal error: Cannot use object of type JDatabaseMySQLi as array in /Sites/joomla/administrator/components/com_***** on line 217
.
私もこのように試しました:
die(var_dump($config->getValue('config.host')));
//string(9) "localhost"
$temp_var = $config->getValue('config.host');
die(var_dump($temp_var));
//string(9) "localhost"