服务器之家

服务器之家 > 正文

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

时间:2019-10-30 16:30     来源/作者:php教程网

写入过程 

复制代码代码如下:


// 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'); 

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
返回顶部