如何在CodeIgniter中使用钩子

时间:2014-08-25 12:45:33

标签: php codeigniter

如何在CodeIgniter中使用钩子,如

class SessionData{
    var $CI;

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

    function initializeData() {
          // This function will run after the constructor for the controller is ran
          // Set any initial values here
          if(!$this->session->userdata('username')){    //this is line 13
             redirect('login');
          }
    }
}

0 个答案:

没有答案