織夢DedeCms怎麼取消後台登陸驗證碼?
首先模擬會員登入和退出,有兩個重要文件,一個是include下的memberlogin.class.php和include/helpers下的cache.helper.php檔案。
原則為:memberlogin.class.php透過使用快取助手 helper('cache'),然後/member/config.php 檔案引入memberlogin.class.php檔案實作類比登入和登出。
模擬會員登入程式碼
##引入/member/config.php$cfg_ml->DelCache($cfg_ml->M_ID);//清除会员登录缓存 $cfg_ml->PutLoginInfo($mid);//让某用户登录
模擬會員退出程式碼
引入/member/config.php$cfg_ml->DelCache($cfg_ml->M_ID);//清除会员登录缓存 $cfg_ml->ExitCookie();//退出当前登录用户
if(empty($gourl) || preg_match("#action|_do#i", $gourl)) { ShowMsg("成功登录,5秒钟后转向系统主页...","index.php",0,2000); }
if(empty($gourl) || eregi("action|_do",$gourl)) { ShowMsg("登录成功,正在转向网站首页...","/",0,2000); }
ShowMsg("成功退出登录!","-1",0,2000); echo "";
ShowMsg("成功退出登录!","index.php",0,2000);
ShowMsg("成功退出登录!","/",0,2000);
以上是織夢DedeCms怎麼取消後台登陸驗證碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!