我一直在玩我在网上找到的一个名为Config Magik的php类,我用它来存储INI文件中的一些信息,但最近在使用removeKey时遇到了一些问题。我想知道是否有人能指出我能够工作得更好或更好的类似课程。或者,如果有更好的方法可以解决这个问题。
这是我现在的功能,就像疯了一样玩它,所以它可能非常错误。
require_once('class.ConfigMagik.php');
$config = new ConfigMagik('config.ini', true, true);
if(!empty($_GET)){
if(!is_writeable('config.ini')){
echo 'Could not write to config.ini';
return false;
}
//if there is no section parameter, we will not do anything.
if(!isset($_GET['section'])){
echo false; return false;
} else {
$section_name = $_GET['section'];
unset($_GET['section']); //Unset section so that we can use the GET variable to manipulate the other parameters in a foreach loop.
if (!empty($_GET)){
foreach ($_GET as $var => $value){
echo $var.'='.$_GET[$var].'<br />';
//Check if said variable $var exists in the section.
if($config->get($var, $section_name) !== NULL){
//Set variable value.
try{
$config->set($var, $value, $section_name);
echo 'Setting variable '. $var.' to '.$value.' on section '.$section_name;
} catch(Exception $e) {
echo 'Could not set variable '.$var;
echo $e;
return false;
}
} else {
echo $var.' does not exist <br />';
}
}
}
try{
$section = $config->get($section_name); //Get the entire section so that we can manipulate it.
echo '<pre>';print_r($section);echo '</pre>';
foreach ($section as $title=>$value){
if(!isset($_GET[$title]) && isset($section[$title])){
try{
$config->removeKey($title, $section_name);
echo '<b>'.$title.'</b>: removed <br />';
} catch(Exception $e){
echo $e;
}
}
}
} catch(Exception $e){
echo $e;
}
$config->save();
//echo $config->toString('HTML');
echo true;
return true;
}
} else { RUN SOME HTML }
它基本上保存了我从GET参数传递的设置,如果参数不存在,则应该删除它。当我到$ config-&gt; removeKey($ title,$ section_name);在最后一次尝试catch语句中它不会自动保存(因为它应该),所以我尝试运行$ config-&gt; save(),最后我得到一个ini文件,其中section = array无处不在。任何建议都会受到赞赏,因为我过去几周一直在网上学习PHP,所以我相信我还有很长的路要走。
我肯定已将问题隔离到$ config-&gt; save()部分,只是不知道如何解决它。
提前致谢。
答案 0 :(得分:2)
我过去一直在使用Zend_Config_Ini和Zend_Config_Writer_Ini,并对这些功能感到满意。您将从Zend Framework中提取整个库/ Zend / Config文件夹,并使Zend_Exception可用。