source:
trunk/Packages/Common/Config.php
Last change on this file was 888, checked in by , 4 years ago | |
---|---|
File size: 1.1 KB |
Rev | Line | |
---|---|---|
[565] | 1 | <?php |
2 | ||
[738] | 3 | class Config |
[565] | 4 | { |
[888] | 5 | public array $Data; |
[738] | 6 | |
[582] | 7 | function __construct() |
8 | { | |
[738] | 9 | $this->Data = array(); |
[582] | 10 | } |
[738] | 11 | |
[888] | 12 | function ReadValue(string $Name) |
[565] | 13 | { |
[873] | 14 | if (!is_array($Name)) $Name = explode('/', $Name); |
[738] | 15 | $Last = array_pop($Name); |
16 | $Data = &$this->Data; | |
[873] | 17 | foreach ($Name as $Item) |
[738] | 18 | { |
19 | $Data = &$Data[$Item]; | |
20 | } | |
[874] | 21 | return $Data[$Last]; |
[565] | 22 | } |
[738] | 23 | |
[888] | 24 | function WriteValue(string $Name, $Value) |
[565] | 25 | { |
[873] | 26 | if (!is_array($Name)) $Name = explode('/', $Name); |
[738] | 27 | $Last = array_pop($Name); |
28 | $Data = &$this->Data; | |
[873] | 29 | foreach ($Name as $Item) |
[738] | 30 | { |
31 | $Data = &$Data[$Item]; | |
32 | } | |
[579] | 33 | $Data[$Item] = $Value; |
[565] | 34 | } |
[738] | 35 | |
[888] | 36 | function LoadFromFile(string $FileName): void |
[565] | 37 | { |
[738] | 38 | $ConfigData = array(); |
[565] | 39 | include $FileName; |
[873] | 40 | foreach ($this->Data as $Index => $Item) |
[579] | 41 | { |
[888] | 42 | if (array_key_exists($Index, $ConfigData)) |
[579] | 43 | $this->Data[$Index] = $ConfigData[$Index]; |
44 | } | |
[738] | 45 | } |
46 | ||
[888] | 47 | function SaveToFile(string $FileName): void |
[565] | 48 | { |
[593] | 49 | file_put_contents($FileName, "<?php \n\n\$ConfigData = ".var_export($this->Data, true).";\n"); |
[565] | 50 | } |
[738] | 51 | |
[888] | 52 | function GetAsArray(): array |
[579] | 53 | { |
[874] | 54 | return $this->Data; |
[579] | 55 | } |
56 | } |
Note:
See TracBrowser
for help on using the repository browser.