我正在使用此功能来确定我的应用程序应该在线还是离线:
function online() {
if ($online == "0") {
if($_SESSION['exp_user']['userlevel'] != "1") {
include("error/offline.php");
exit();
}
}
}
但是,数据库中的数据值设置为0,并且$online
does ='0',为什么用户级别不是1的人不包含error/offline.php?
谢谢 :)