当我运行这段代码时
public function LogInn()
{
$email = $this->input->post('email');
$password = $this->input->post('password');
$this->load->model('LogIn_Model');
$a = $this->LogIn_Model->Create_Session($email,$password);
if($a==1)
{
redirect('Hadees/word');
}
}
在日志文件中给出错误
ERROR - 2018-09-06 12:39:56 --> Severity: Error --> Call to undefined function redirect()
而不是重定向
在同一文件或自动加载文件中加载url
其工作
同一文件
$this->load->helper('url');
//加载网址帮助程序
自动加载文件
$autoload['helper'] = array('url');