Хорошо, я застрял на этом, почему я не получаю то, что мне нужно?
class config
{
private $config;
# Load configurations
public function __construct()
{
loadConfig('site'); // load a file with $cf in it
loadConfig('database'); // load another file with $cf in it
$this->config = $cf; // $cf is an array
unset($cf);
}
# Get a configuration
public static function get($tag, $name)
{
return $this->config[$tag][$name];
}
}
Я получаю это:
Fatal error: Using $this when not in object context in [this file] on line 22 [return $this->config[$tag][$name];]
И мне нужно вызвать метод следующим образом: config::get()
...