欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Joomla下利用configuration.php存储简单数据

程序员文章站 2023-11-03 20:33:58
写入过程 复制代码 代码如下: // get the path of the configuration file $fname = jpath_configuration...
写入过程
复制代码 代码如下:

// get the path of the configuration file
$fname = jpath_configuration.ds.'configuration.php';
// clear cache
$cache = jfactory::getcache();
$cache->clean();
// update the credentials with the new settings
$config =& jfactory::getconfig();
$config->setvalue('config.custom_var', 'xxx');
// get the config registry in php class format and write it to configuation.php
jimport('joomla.filesystem.file');
if (!jfile::write($fname, $config->tostring('php', 'config', array('class' => 'jconfig')))) {
die(jtext::_('errorconfigfile'));
}

提取过程
复制代码 代码如下:

global $mainframe;
$mainframe->getcfg('custom_var');