您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

17 行
244 B

  1. <?php
  2. import("classes.BaseController");
  3. class LogoutController extends BaseController {
  4. public function onBefore() {
  5. }
  6. /** log out from system **/
  7. function doIndex() {
  8. session_destroy();
  9. $this->redirect("login.index");
  10. }
  11. }
  12. ?>