19 declare(strict_types=1);
75 if (empty($a_ini_file_name)) {
76 $this->
error(
"no_file_given");
79 $this->INI_FILE_NAME = $a_ini_file_name;
85 public function read(): bool
88 if (!file_exists($this->INI_FILE_NAME)) {
89 $this->
error(
"file_does_not_exist");
92 if (!$this->
parse()) {
105 $ini_file_readable = is_readable($this->INI_FILE_NAME);
106 if (!$ini_file_readable) {
107 $this->
error(
"file_not_accessible");
110 $this->GROUPS = parse_ini_file($this->INI_FILE_NAME,
true);
111 if (!$this->GROUPS) {
112 $this->
error(
"error_parseing_inifile");
116 $this->
error($e->getMessage());
122 $temp = array_keys($this->GROUPS);
123 $this->CURRENT_GROUP = $temp[count($temp) - 1];
132 $fp = fopen($this->INI_FILE_NAME,
"wb");
135 $this->
error(
"Cannot create file $this->INI_FILE_NAME");
140 $result = fwrite($fp,
"; <?php exit; ?>\r\n");
143 $group_cnt = count($groups);
145 for ($i = 0; $i < $group_cnt; $i++) {
146 $group_name = $groups[$i];
149 $res = sprintf(
"[%s]\r\n", $group_name);
151 $res = sprintf(
"\r\n[%s]\r\n", $group_name);
154 $result = fwrite($fp,
$res);
157 for (reset($group); $key = key($group);
next($group)) {
158 $res = sprintf(
"%s = %s\r\n", $key,
"\"" . $group[$key] .
"\"");
159 $result = fwrite($fp,
$res);
173 $group_cnt = count($groups);
179 for ($i = 0; $i < $group_cnt; $i++) {
180 $group_name = $groups[$i];
183 $content = sprintf(
"[%s]\n", $group_name);
185 $content .= sprintf(
"\n[%s]\n", $group_name);
191 for (reset($group); $key = key($group);
next($group)) {
192 $content .= sprintf(
"%s = %s\n", $key, $group[$key]);
204 return count($this->GROUPS);
214 for (reset($this->GROUPS); $key = key($this->GROUPS);
next($this->GROUPS)) {
226 if (!isset($this->GROUPS[$a_group_name])) {
239 $this->
error(
"Group '" . $a_group_name .
"' does not exist");
243 return $this->GROUPS[$a_group_name];
249 public function addGroup(
string $a_group_name): bool
252 $this->
error(
"Group '" . $a_group_name .
"' exists");
256 $this->GROUPS[$a_group_name] = array();
266 $this->
error(
"Group '" . $a_group_name .
"' does not exist");
270 unset($this->GROUPS[$a_group_name]);
279 return isset($this->GROUPS[$a_group][$a_var_name]);
285 public function readVariable(
string $a_group,
string $a_var_name): string
287 if (!isset($this->GROUPS[$a_group][$a_var_name])) {
288 $this->
error(
"'" . $a_var_name .
"' does not exist in '" . $a_group .
"'");
292 return trim($this->GROUPS[$a_group][$a_var_name]);
298 public function setVariable(
string $a_group_name,
string $a_var_name,
string $a_var_value): bool
301 $this->
error(
"Group '" . $a_group_name .
"' does not exist");
305 $this->GROUPS[$a_group_name][$a_var_name] = $a_var_value;
309 public function error(
string $a_errmsg): bool
311 $this->ERROR = $a_errmsg;
addGroup(string $a_group_name)
adds a new group
string $INI_FILE_NAME
name of file
write()
save ini-file-data to filesystem
variableExists(string $a_group, string $a_var_name)
returns if a variable exists or not
parse()
load and parse an inifile
string $CURRENT_GROUP
actual section
setVariable(string $a_group_name, string $a_var_name, string $a_var_value)
sets a variable in a group
readGroup(string $a_group_name)
returns an associative array of the variables in one group
show()
returns the content of IniFile
getGroupCount()
returns number of groups
groupExists(string $a_group_name)
checks if a group exists
removeGroup(string $a_group_name)
removes a group
array $GROUPS
sections in ini-file
readVariable(string $a_group, string $a_var_name)
reads a single variable from a group
__construct(string $a_ini_file_name)
Constructor.
readGroups()
returns an array with the names of all the groups