_conf[$name] = $value; } function get ($name) { return $this->_conf[$name]; } static function instance() { if(!Conf::$instance) { Conf::$instance = new Conf(); } return Conf::$instance; } } ?>