|
1234567891011121314151617181920212223 |
- <?php
- /**
- * 退出
- *
- * @version $Id: exit.php 1 19:09 2010年7月12日Z 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 language='javascript'>
- if(document.all) window.opener=true;
- window.close();
- </script>";
- echo $msg;
- }
|