1. 程式人生 > >奪命雷公狗TP3.2.3商城9-----後臺退出

奪命雷公狗TP3.2.3商城9-----後臺退出

die spl null fun mage tro .cn extends 3.2

我們直接在Login這個控制器裏寫多一個方法即可完成退出了,

技術分享

<?php
namespace Admin\Controller;
use Think\Controller;
class LoginController extends Controller {
    //後臺登錄
    public function index(){
        if(IS_POST){
            $username = I(‘admin‘);
            $password = I(‘pwd‘);
            if(D(‘admin‘)->checkUser($username
,$password)){ //dump($_SESSION);die; $this -> success(‘登錄成功‘,U(‘index/index‘)); }else{ $this -> error(‘用戶名或則密碼錯誤‘); } return; } $this -> display(); } //註銷 public function logout(){ session(
null); $this -> success(‘恭喜成功退出‘,‘index‘,3); //dump($_SESSION); } }

然後在修改一下網頁上的退出按鈕,並且在模版中找到他:

技術分享

技術分享

然後來測試下

奪命雷公狗TP3.2.3商城9-----後臺退出