class Admin extends CI_Controller {
public function __construct() {
parent::__construct();
$this->check_login();
// 这个函数也可以放在 helper 目录下,以便其它的控制器类也可以使用
}
private function check_login(){
/**** 登录检测 ****/
}
public function other() {}
public function other2() {}
}