这是我的函数及其调用:
function checkAccess($_cuser, $_user){
print($_cuser->getValue("usr_id"));
$access=true;
if($_cuser->getValue("usr_id")==$_user && $access) {
$access=true;
}
if($_cuser->viewAllLists()==false && $_cuser->getValue("usr_id")!=$_user && $access) {
$access=false;
}
if($_cuser->viewAllLists()==true && $_cuser->getValue("usr_id")!=$_user && $access){
$access=true;
}
return $access;
}
checkAccess($gCurrentUser, $_REQUEST["user"]);
我总是收到错误“致命错误:在第 1 行的 ... 中的非对象上调用成员函数 getValue() ”,但无论如何都在打印“用户 ID:14”。这对我来说似乎不太合乎逻辑。这里可能是什么问题?
谢谢