From 0a6e9e00ae2e807510f0fbb6912ce39fbb92c0ad Mon Sep 17 00:00:00 2001
From: pedro_morgan <pedro_morgan@ispconfig3>
Date: Tue, 21 Aug 2007 00:53:32 -0400
Subject: [PATCH] ini_parser class now php5
---
interface/lib/classes/ini_parser.inc.php | 28 ++++++++++++++++++----------
1 files changed, 18 insertions(+), 10 deletions(-)
diff --git a/interface/lib/classes/ini_parser.inc.php b/interface/lib/classes/ini_parser.inc.php
index 349990f..b302bd0 100644
--- a/interface/lib/classes/ini_parser.inc.php
+++ b/interface/lib/classes/ini_parser.inc.php
@@ -1,4 +1,12 @@
<?php
+/**
+ * ini parser
+ *
+ * @author Till Brehm
+ * @copyright 2005, Till Brehm, projektfarm Gmbh
+ * @version 0.1
+ * @package ISPConfig
+ */
/*
Copyright (c) 2006, Till Brehm, projektfarm Gmbh
@@ -28,18 +36,16 @@
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-class ini_parser {
+class ini_parser{
- var $config;
+ private $config;
- function parse_ini_string($ini) {
- $ini = str_replace("\r\n","\n",$ini);
- $lines = explode("\n",$ini);
-
+ public function parse_ini_string($ini) {
+ $ini = str_replace("\r\n", "\n", $ini);
+ $lines = explode("\n", $ini);
foreach($lines as $line) {
-
+ $line = trim($line);
if($line != '') {
- $line = trim($line);
if(preg_match("/^\[([\w\d_]+)\]$/", $line, $matches)) {
$section = strtolower($matches[1]);
} elseif(preg_match("/^([\w\d_]+)=(.*)$/", $line, $matches) && $section != null) {
@@ -53,12 +59,14 @@
- function get_ini_string($file) {
+ public function get_ini_string($file) {
$content = '';
foreach($this->config as $section => $data) {
$content .= "[$section]\n";
foreach($data as $item => $value) {
- if($value != '') $content .= "$item=$value\n";
+ if($value != ''){
+ $content .= "$item=$value\n";
+ }
}
}
return $content;
--
Gitblit v1.9.1