选择语言 :

 Core_Auth::__construct

null Core_Auth::__construct( )
File: ./core/classes/auth.class.php
public function __construct($config_name=null)
{
    if (null===$config_name)
    {
        $config_name = Auth::DEFAULT_CONFIG_NAME;
    }

    $this->config_name = $config_name;
    $this->config      = Core::config('auth.'.$config_name);
}