|
发表于 2012-3-20 21:22:29
|
显示全部楼层
kissgxd 发表于 2012-3-20 21:11
打算 发现不合适的参数,直接在index.php 里exit
/*你可以在构造函数里面封装下*/
public function __construct()
{
parent::__construct();
/*Catch URL 读取当前 URL的信息*/
$this->template['url'] = $this->router->fetch_method();
$this->template['class'] = $this->router->fetch_class();
/*hack 可以屏蔽到未加载的章节*/
if ( ! in_array($this->router->fetch_method(),$this->available_manual))
{
Message::set('亲..'.$this->router->fetch_method().'章节正在撰写','info');
redirect('/doc/start');
}
/*消息提示*/
Message::set('亲..,CI学习,就此拉开帷幕','info');
}
URL可以直接参考这个站点http://cier.phpfogapp.com/index.php/docs/start/basic/chapter02
|
|