码迷,mamicode.com
首页 > Web开发 > 详细

CI框架源码学习笔记6——Config.php

时间:2017-03-30 00:04:43      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:toc   ror   dir   rar   错误信息   err   日志记录   public   empty   

接着上一节往下,我们这一节来看看配置类Config.php,对应手册内容http://codeigniter.org.cn/user_guide/libraries/config.html。

class CI_Config {

    //所有已经加载的配置项组成的数组
    public $config = array();

    //所有已经加载的配置文件组成的数组
    public $is_loaded =    array();

    //用来搜索配置文件的路径数组
    public $_config_paths =    array(APPPATH);

    // --------------------------------------------------------------------

    public function __construct()
    {
        //加载主配置文件config.php
        $this->config =& get_config();

        //如果配置中没有base_url提供的话,设置base_url
        if (empty($this->config[‘base_url‘]))
        {
            //当前运行脚本所在的服务器的IP地址,设置base_url
            if (isset($_SERVER[‘SERVER_ADDR‘]))
            {
                if (strpos($_SERVER[‘SERVER_ADDR‘], ‘:‘) !== FALSE)
                {
                    $server_addr = ‘[‘.$_SERVER[‘SERVER_ADDR‘].‘]‘;
                }
                else
                {
                    $server_addr = $_SERVER[‘SERVER_ADDR‘];
                }

                $base_url = (is_https() ? ‘https‘ : ‘http‘).‘://‘.$server_addr
                    .substr($_SERVER[‘SCRIPT_NAME‘], 0, strpos($_SERVER[‘SCRIPT_NAME‘], basename($_SERVER[‘SCRIPT_FILENAME‘])));
            }
            else
            {
                $base_url = ‘http://localhost/‘;
            }
            //调用set_item方法来设置base_url到配置中
            $this->set_item(‘base_url‘, $base_url);
        }
        //日志记录,需要开启到对应日志等级
        log_message(‘info‘, ‘Config Class Initialized‘);
    }

    // --------------------------------------------------------------------

    public function load($file = ‘‘, $use_sections = FALSE, $fail_gracefully = FALSE)
    {
        //$file为空时设置默认值config;替换参数中的.php后缀为空
        $file = ($file === ‘‘) ? ‘config‘ : str_replace(‘.php‘, ‘‘, $file);
        //$loaded用来作为最后返回的结果值
        $loaded = FALSE;

        //从路径数组循环
        foreach ($this->_config_paths as $path)
        {
            //循环文件名称
            foreach (array($file, ENVIRONMENT.DIRECTORY_SEPARATOR.$file) as $location)
            {
                //拼接完整的文件路径
                $file_path = $path.‘config/‘.$location.‘.php‘;
                //判断配置文件是否已經加载过,若加载过直接返回true
                if (in_array($file_path, $this->is_loaded, TRUE))
                {
                    return TRUE;
                }
                //判断文件是否存在,若不存在跳出当前的循环
                if ( ! file_exists($file_path))
                {
                    continue;
                }
    
                //引入文件
                include($file_path);

                //判断文件中是否设置了$config变量,并且$config变量是否是数组
                //若不是,根据$fail_gracefully执行返回false或者输出错误信息
                if ( ! isset($config) OR ! is_array($config))
                {
                    if ($fail_gracefully === TRUE)
                    {
                        return FALSE;
                    }

                    show_error(‘Your ‘.$file_path.‘ file does not appear to contain a valid configuration array.‘);
                }
                
                //根据参数$use_sections,判断每个配置文件中的配置是否需要被存储到以该配置文件名为索引的数组中
                if ($use_sections === TRUE)
                {
                    $this->config[$file] = isset($this->config[$file])
                        ? array_merge($this->config[$file], $config)
                        : $config;
                }
                else
                {
                    $this->config = array_merge($this->config, $config);
                }

                //将当前加载的文件,加载到数组$this->is_loaded
                $this->is_loaded[] = $file_path;
                //设置$config为null,用于下次循环判断
                $config = NULL;
                //加载成功后设置$loaded为true
                $loaded = TRUE;
                //记录debug日志
                log_message(‘debug‘, ‘Config file loaded: ‘.$file_path);
            }
        }

        //根据$loaded返回true或者false
        if ($loaded === TRUE)
        {
            return TRUE;
        }
        elseif ($fail_gracefully === TRUE)
        {
            return FALSE;
        }

        //$fail_gracefully设置为false是会打印错误信息,倘若有错误的话
        show_error(‘The configuration file ‘.$file.‘.php does not exist.‘);
    }

    // --------------------------------------------------------------------

    //获取配置内容
    //如果你在使用 $this->config->load 方法时使用了第二个参数,每个配置文件中的配置 被存储到以该配置文件名为索引的数组中
    //要获取该配置项,你可以将 $this->config->item() 方法的第二个参数设置为这个索引名(也就是配置文件名)
    public function item($item, $index = ‘‘)
    {
        //$index为空的时候
        //倘若查询的配置存在,那么直接返回数组内容,否则返回null
        if ($index == ‘‘)
        {
            return isset($this->config[$item]) ? $this->config[$item] : NULL;
        }

        //返回某个文件中的对应配置内容        
        return isset($this->config[$index], $this->config[$index][$item]) ? $this->config[$index][$item] : NULL;
    }

    // --------------------------------------------------------------------

    //这个方法和 item() 一样,只是在获取的配置项后面添加一个斜线,如果配置项不存在,返回 NULL 
    public function slash_item($item)
    {
        if ( ! isset($this->config[$item]))
        {
            return NULL;
        }
        elseif (trim($this->config[$item]) === ‘‘)
        {
            return ‘‘;
        }

        return rtrim($this->config[$item], ‘/‘).‘/‘;
    }

    // --------------------------------------------------------------------

    //该方法返回你的网站的 URL ,包括你在配置文件中设置的 "index" 值。
    //这个方法通常通过 URL 辅助函数 中函数来访问。
    public function site_url($uri = ‘‘, $protocol = NULL)
    {
        //获取站点根url
        $base_url = $this->slash_item(‘base_url‘);
        
        //$protocol一般用作协议,例如http或者https
        if (isset($protocol))
        {
            //如果$protocol为空,截取base_url双斜杠之后的部分
            if ($protocol === ‘‘)
            {
                $base_url = substr($base_url, strpos($base_url, ‘//‘));
            }
            //否则截取冒号之后的部分,与$protocol拼接
            else
            {
                $base_url = $protocol.substr($base_url, strpos($base_url, ‘://‘));
            }
        }
    
        //如果没有提供参数$uri,后面跟上配置index_page,然后直接返回
        if (empty($uri))
        {
            return $base_url.$this->item(‘index_page‘);
        }

        //如果参数存在,返回格式化之后的字符串
        $uri = $this->_uri_string($uri);

        //根据配置enable_query_strings判断是否需要添加后缀
        if ($this->item(‘enable_query_strings‘) === FALSE)
        {    
            //获取后缀的值
            $suffix = isset($this->config[‘url_suffix‘]) ? $this->config[‘url_suffix‘] : ‘‘;

            //后缀值不为空的时候
            if ($suffix !== ‘‘)
            {    
                //判断$uri中是否存在?,如果存在那么在?前添加后缀,否则在最后添加后缀
                if (($offset = strpos($uri, ‘?‘)) !== FALSE)
                {
                    $uri = substr($uri, 0, $offset).$suffix.substr($uri, $offset);
                }
                else
                {
                    $uri .= $suffix;
                }
            }

            return $base_url.$this->slash_item(‘index_page‘).$uri;
        }
        //配置enable_query_strings没有开启,并且$uri中没有?时,在它的前面加上?
        elseif (strpos($uri, ‘?‘) === FALSE)
        {
            $uri = ‘?‘.$uri;
        }

        //返回最后构成的url
        return $base_url.$this->item(‘index_page‘).$uri;
    }

    // -------------------------------------------------------------

    //获取base_url,这里跟上面方法的区别就是没有带默认的index_page和后缀的操作
    public function base_url($uri = ‘‘, $protocol = NULL)
    {
        $base_url = $this->slash_item(‘base_url‘);

        if (isset($protocol))
        {
            // For protocol-relative links
            if ($protocol === ‘‘)
            {
                $base_url = substr($base_url, strpos($base_url, ‘//‘));
            }
            else
            {
                $base_url = $protocol.substr($base_url, strpos($base_url, ‘://‘));
            }
        }

        return $base_url.$this->_uri_string($uri);
    }

    // -------------------------------------------------------------

    //跟时化参数成指定形式字符串的方法
    protected function _uri_string($uri)
    {
        //enable_query_strings没有开启时我们返回的是/分割的字符串,较为美观
        if ($this->item(‘enable_query_strings‘) === FALSE)
        {
            is_array($uri) && $uri = implode(‘/‘, $uri);
            return ltrim($uri, ‘/‘);
        }
        //配置开启是返回的是URL-encode 之后的请求字符串
        elseif (is_array($uri))
        {
            return http_build_query($uri);
        }

        return $uri;
    }

    // --------------------------------------------------------------------

    //返回系统路径,废弃方法,因为暴露系统路径是不安全的
    public function system_url()
    {
        $x = explode(‘/‘, preg_replace(‘|/*(.+?)/*$|‘, ‘\\1‘, BASEPATH));
        return $this->slash_item(‘base_url‘).end($x).‘/‘;
    }

    // --------------------------------------------------------------------

    //设置某个配置项的值
    public function set_item($item, $value)
    {
        $this->config[$item] = $value;
    }

}

Config.php文件中的不是很复杂,主要提供了记载和获取配置文件内容的功能,以及常用url的获取。

 

CI框架源码学习笔记6——Config.php

标签:toc   ror   dir   rar   错误信息   err   日志记录   public   empty   

原文地址:http://www.cnblogs.com/isuifeng/p/6629399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!