|
楼主 |
发表于 2017-8-21 16:14:55
|
显示全部楼层
SYS 这个不说了
APP 里面的
|
------core
|
------------Lin_Controller.php
------libraries
|
------------lin
|
---------Settings.php
其中Lin_Controller.php 部分内容:
class Lin_Controller extends CI_Controller {
public $setting;
public $S;
//初始化扩展控制类
function __construct(){
parent::__construct();
//载入配置
$this->load->library('lin/Settings');
//判断当前语言
$this->S['lang'] = $this->config->item('language');
$this->S['post_lang'] = $this->config->item('post_lang');
}
}
等等。。。
lin里Settings.php的内容
class Settings
{
内容内容。。。
} |
|