首页 > Web开发 > 详细

微型php框架 include/conf.class.php

时间:2014-07-13 14:32:39      阅读:390      评论:0      收藏:0      [点我收藏+]

<?php

defined(‘ACC‘)||exit(‘Access Denied‘);

// 配置文件读取类


class conf {

    protected static $ins = null;

    protected $cfg = array(‘db‘=>‘java0620‘);

    

    public static function getIns() {

        if(self::$ins === null) {

            self::$ins = new self();

        }


        return self::$ins;

    }


    final protected function __construct() {

        require(ROOT . ‘include/config.php‘);

        $this->cfg = $cfg;

    }


    // 根据指定的配置项,返回该配置项的值

    public function __get($k) {

        if(!isset($this->cfg[$k])) {

            return null;

        }


        return $this->cfg[$k];

    }


    // 根据指定的配置项,返回配置项的值

    public function __set($k,$v) {

        $this->cfg[$k] = $v;

    }


}




/*


$conf = conf::getIns();


echo $conf->db,‘<br />‘;



$conf->db = ‘java0620‘;


echo $conf->db;


*/


微型php框架 include/conf.class.php,布布扣,bubuko.com

微型php框架 include/conf.class.php

原文:http://keyue.blog.51cto.com/6559543/1437272

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!