mirror of https://github.com/helloxz/imgurl
17 lines
317 B
PHP
17 lines
317 B
PHP
![]() |
<?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;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
?>
|