📄 auth.php
字号:
<?phpclass oas2cwpsAuth{ var $session = array(); var $sId; var $fromCWPS = false; var $doLog = false; var $logFile = 'tmp/'; var $reqCharset = 'utf8'; var $respCharset = 'utf8'; function oas2cwpsAuth() { global $SYS_ENV; session_start(); $this->session = &$_SESSION; $this->cookie_name_sid = $SYS_ENV['CookiePre'] . 'sid'; $this->sId = isset($_GET['sId']) ? $_GET['sId'] : (isset($_POST['sId']) ? $_POST['sId'] : (isset($_COOKIE[$this->cookie_name_sid])) ? $_COOKIE[$this->cookie_name_sid] : $_SESSION['sId']); $this->Ip = $GLOBALS['IN']['IP_ADDRESS']; $this->doLog = $SYS_ENV['doLog']; //鏄
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -