Вход Регистрация
Файл: system/classes/Ini.php
Строк: 79
<?php
/**
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) 2013, Taras Chornyi, Sergiy Mazurenko, Ivan Kotliar
 * @link          http://perf-engine.net
 * @package       PerfEngine
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
 */
if (!defined('_BR_'))
   
define('_BR_',chr(13).chr(10));
   
class 
Ini 
{
    private static 
$filename;
    private static 
$arr = array();
    
    public function 
__construct($file '')
    {
        if (!empty(
$file))
        {
            if (
file_exists($file) && is_readable($file))
            {
                
self::$filename $file;
                
self::loadArray($file);
            }
        }
    }
    
    public static function 
loadArray($filename)
    {
        
$arr parse_ini_file($filenametrue);
        
self::$arr $arr;
        return 
$arr;
    }
    
    public static function 
loadFromFile($filename)
    {
        return 
self::loadArray($filename);
    }
    
    public function 
read($key$path ''$var '')
    {
        if(!empty(
$path))
        {
            
$path APP_ROOT.'/'.str_replace('[var]'$var$path);
            
self::loadFromFile($path);
        }
        
$arr self::$arr;
        if (isset(
$arr[$key]))
        {
            return 
$arr[$key];
        } else
            return 
false;
    }
    
    public function 
write($key$value ''$path '')
    {
        if(!empty(
$path))
        {
            
$path APP_ROOT.'/'.$path;
            
self::loadFromFile($path);
        }
        
$arr self::$arr;
        
self::$arr[$key] = $value;
    }
    
    
//public function eraseSection($section)
    //{
        //if (isset(self::$arr))
            //unset(self::$arr);
    //}
    
    
public function deleteKey($key)
    {
        if (isset(
self::$arr[$key]))
            unset(
self::$arr[$key]);
    }
    
    
//public function readSections(&$array)
    //{
        //$array = array_keys(self::$arr);
        //return $array;
    //}
    
    
public function showKeys()
    {
        if (isset(
self::$arr))
        {
            
$array array_keys(self::$arr);
            return 
$array;
        }
        return 
false;
    }
    
    public function 
showValues()
    {
        if (isset(
self::$arr))
        {
            
$array array_values(self::$arr);
            return 
$array;
        }
        return 
false;
    }
    
    public function 
updateFile()
    {
        
$result '';
        foreach(
self::$arr as $key=>$value)
        {
                
$result .= $key .' = "'.$value .'";'_BR_;
        }
        
$result .= _BR_;
        
file_put_contents(self::$filename$result);
        
        return 
true;
    }
    
    
// public function __destruct()
    // {
        // if(!empty(self::$filename))    $this->updateFile();
    // }
}
Онлайн: 0
Реклама