用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1278|回复: 1
收起左侧

[已解决] hook 无限跳转 解决办法?

[复制链接]
发表于 2016-4-20 16:03:30 | 显示全部楼层 |阅读模式
<?php
class islogin{

        private $CI;
        
        public function __construct(){
                $this->CI =& get_instance();
        }

        public function check(){
                $this->CI->load->model('madmin');
                $this->CI->load->helper('url');
                $this->CI->load->library('session');
                if(!$this->CI->madmin->is_login()){
                        echo "<script>window.location.href='".site_url('public/login')."'</script>";
                }
        }
}
版本 3.0.6 这是验证登录的 各路大神 求助
 楼主| 发表于 2016-4-21 09:00:14 | 显示全部楼层
已找到解决办法

本版积分规则