Last active
August 29, 2015 14:01
-
-
Save jan-krueger/7ef938505a672c8f782e to your computer and use it in GitHub Desktop.
Config-File based on arrays with endless levels.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Config { | |
private $config; | |
private $DELIMITER = '.'; | |
public function __construct($config, $delimiter = '.') { | |
if(is_null($config)) { | |
throw new ConfigException(ConfigExceptionType::CONFIG_IS_NULL); | |
} | |
if(!(is_array($config))) { | |
throw new ConfigException(ConfigExceptionType::CONFIG_ISNT_ARRAY, null, gettype($config)); | |
} | |
$this->config = $config; | |
$this->DELIMITER = $delimiter; | |
} | |
public function get($path, $config = null) { | |
if (is_null($config)) { | |
$config = $this->config; | |
} | |
if (is_null($path)) { | |
throw new ConfigException(ConfigExceptionType::PATH_IS_NULL, $path); | |
} | |
if (!(self::containsPath($path, $config))) { | |
throw new ConfigException(ConfigExceptionType::UNKNOWN_PATH, $path, $path); | |
} | |
$cur = $config; | |
if(strpos($path, $this->DELIMITER)) { | |
$exp = explode($this->DELIMITER, $path); | |
foreach ($exp as $key) { | |
$cur = $cur[$key]; | |
} | |
return $cur; | |
} | |
return $cur[$path]; | |
} | |
public function containsPath($path, $config) { | |
if (is_null($config)) { | |
$config = $this->config; | |
} | |
$cur = $config; | |
if(strpos($path, $this->DELIMITER)) { | |
$exp = explode($this->DELIMITER, $path); | |
foreach ($exp as $key) { | |
$cur = $cur[$key]; | |
} | |
return (!(is_null($cur))); | |
} | |
return (!(is_null($cur[$path]))); | |
} | |
} | |
class ConfigExceptionType { | |
const UNKNOWN_PATH = 'The given path is unknown (Path: %s).'; | |
const PATH_IS_NULL = 'The given path is null.'; | |
const CONFIG_IS_NULL = 'The given config is not valid or null.'; | |
const CONFIG_ISNT_ARRAY = 'The given config must be an instance of array (%s is wrong).'; | |
} | |
class ConfigException extends Exception { | |
private $path; | |
public function __construct($message, $path = null, $argument = null, $code = 0, Exception $previous = null) { | |
parent::__construct(sprintf('ConfigException: ' . $message, $argument), $code, $previous); | |
$this->path = $path; | |
} | |
public function getPath() { | |
return $this->path; | |
} | |
} | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
try { | |
$databases = array( | |
'database' => array( | |
'login' => array( | |
'host' => 'localhost', | |
'user' => 'mySpecialUser', | |
'pass' => 'mySecretPassword', | |
'port' => 3306, | |
'tables' => array( | |
'user' => array( | |
'username' => 'varchar(50)', | |
'password' => 'text', | |
'email' => 'varchar(100)' | |
) | |
) | |
), | |
'content' => array( | |
'host' => 'myoutsourceddatabasehost', | |
'user' => 'myuser', | |
'pass' => 'thisisapassword', | |
'port' => 3309, | |
'tables' => array( | |
'pages' => array( | |
'title' => 'varchar(120)', | |
'content' => 'text', | |
'menuposi' => 'integer(2)' | |
), | |
'news' => array( | |
'title' => 'varchar(120)', | |
'author' => 'varchar(20)', | |
'short' => 'varchar(255)', | |
'newsText' => 'text', | |
'published' => 'varchar(20)' | |
) | |
) | |
) | |
) | |
); | |
$db = new Config($databases); | |
$login = $db->get('database.login'); | |
$content = $db->get('database.content'); | |
echo '<pre>', print_r($login), '</pre>'; | |
echo '<pre>', print_r($db->get('tables', $content)), '</pre>'; | |
} catch(ConfigException $e) { | |
print_r($e->getMessage()); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment