這是控制器中的一項功能,可讓用戶註銷。但是如何讓用戶做到這一點?我認爲答案是在一個視圖中放置一個超鏈接。但我無法弄清楚如何創建一個調用該函數的超鏈接。 (我寧願不建一個形式...)Source for this code讓用戶調用CodeIgniter中的控制器功能
class Auth extends Controller {
....
function logout()
{
$this->data['title'] = "Logout";
//Library function
$logout = $this->ion_auth->logout();
//redirect them back to the page they came from
redirect('auth', 'refresh');
}
....
}
謝謝,這是2個有價值的回答之一。試圖在404'頁面未找到'的結果。我將要拆除我的.htaccess指令,它們似乎使一切都變得困難。 – Smandoli 2010-08-08 19:20:01
可能是圍繞index.php重定向的嘗試讓我無法得到這個。謝謝。 – Smandoli 2010-08-08 20:11:14
你在Auth類中有刷新方法嗎?也許它註銷後導致404 ... – 2010-08-08 23:24:58