我需要能够编辑.ini文件(我正在用parse_ini_file阅读),但这样就可以保留注释和格式(换行符,缩进)。
你知道有哪些优秀的课程对这类东西有很好的优化功能吗?
答案 0 :(得分:5)
我没有在Zend组件框架中使用config writer,但我使用了配置阅读器,它非常可靠。肯定值得一试。
答案 1 :(得分:4)
您可以尝试从此开始,它会读取ini文件,并在写入时保留设置,您必须扩展它以支持添加新条目:
class ini {
protected $lines;
public function read($file) {
$this->lines = array();
$section = '';
foreach(file($file) as $line) {
// comment or whitespace
if(preg_match('/^\s*(;.*)?$/', $line)) {
$this->lines[] = array('type' => 'comment', 'data' => $line);
// section
} elseif(preg_match('/\[(.*)\]/', $line, $match)) {
$section = $match[1];
$this->lines[] = array('type' => 'section', 'data' => $line, 'section' => $section);
// entry
} elseif(preg_match('/^\s*(.*?)\s*=\s*(.*?)\s*$/', $line, $match)) {
$this->lines[] = array('type' => 'entry', 'data' => $line, 'section' => $section, 'key' => $match[1], 'value' => $match[2]);
}
}
}
public function get($section, $key) {
foreach($this->lines as $line) {
if($line['type'] != 'entry') continue;
if($line['section'] != $section) continue;
if($line['key'] != $key) continue;
return $line['value'];
}
throw new Exception('Missing Section or Key');
}
public function set($section, $key, $value) {
foreach($this->lines as &$line) {
if($line['type'] != 'entry') continue;
if($line['section'] != $section) continue;
if($line['key'] != $key) continue;
$line['value'] = $value;
$line['data'] = $key . " = " . $value . "\r\n";
return;
}
throw new Exception('Missing Section or Key');
}
public function write($file) {
$fp = fopen($file, 'w');
foreach($this->lines as $line) {
fwrite($fp, $line['data']);
}
fclose($fp);
}
}
$ini = new ini();
$ini->read("C:\\php.ini");
$ini->set('PHP', 'engine', 'Off');
echo $ini->get('PHP', 'engine');
$ini->write("C:\\php.ini");
答案 2 :(得分:2)
以下是您可能想尝试的一些内容:
http://www.phpclasses.org/package/3089-PHP-Manipulate-configuration-files-in-the-ini-format.html
http://www.phpclasses.org/package/6545-PHP-Read-and-write-configuration-values-to-INI-files.html
答案 3 :(得分:2)
PEAR::Config
包支持评论,所以我认为它确实保留了它们。可能它符合您的需求。