mirror of https://github.com/helloxz/imgurl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
317 B
17 lines
317 B
7 years ago
|
<?php
|
||
|
include_once("../config.php");
|
||
|
class LgoinStatus {
|
||
|
var $uid = $_COOKIE['uid'];
|
||
|
var $login = md5($config['username'].$config['password']);
|
||
|
function status(){
|
||
|
$uid = $this->uid;
|
||
|
$loginid = $this->login;
|
||
|
if($uid != $loginid) {
|
||
|
return false;
|
||
|
echo '权限不足';
|
||
|
exit;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
?>
|