|
123456789101112131415161718192021222324 |
- <?php
- /**
- * 退出
- *
- * @version $id:exit.php 19:09 2010年7月12日 tianya $
- * @package DedeBIZ.Administrator
- * @copyright Copyright (c) 2022 DedeBIZ.COM
- * @license https://www.dedebiz.com/license
- * @link https://www.dedebiz.com
- */
- require_once(dirname(__FILE__).'/../system/common.inc.php');
- require_once(DEDEINC.'/userlogin.class.php');
- $cuserLogin = new userLogin();
- $cuserLogin->exitUser();
- if (empty($needclose)) {
- header('location:index.php');
- } else {
- $msg = "<script>
- if (document.all) window.opener=true;
- window.close();
- </script>";
- echo $msg;
- }
- ?>
|