本文整理汇总了PHP中tool::errorStatus方法的典型用法代码示例。如果您正苦于以下问题:PHP tool::errorStatus方法的具体用法?PHP tool::errorStatus怎么用?PHP tool::errorStatus使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tool
的用法示例。
在下文中一共展示了tool::errorStatus方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
// try to authenticate by IP
if ($loginInst->authByIp()) {
$HTTP_SESSION_VARS['loginid'] = $loginInst->authByIp();
} elseif (tool::securePost('loginname') && $loginInst->authByPassword(tool::securePost('loginname'), tool::securePost('password'))) {
$HTTP_SESSION_VARS['loginid'] = $loginInst->authByPassword(tool::securePost('loginname'), tool::securePost('password'));
}
if (isset($HTTP_SESSION_VARS['loginid']) && $HTTP_SESSION_VARS['loginid'] != "" && !session_is_registered("loginid")) {
$loginid = $HTTP_SESSION_VARS['loginid'];
if (!session_register("loginid")) {
echo "<b>" . $lang['common_unableToSaveLoginInSession'] . "</b><br>";
// could not save session -> give up
exit;
}
} elseif (!session_is_registered("loginid") && (tool::securePost('loginname') || tool::securePost('password'))) {
// show error message only, if username/password was submitted
tool::errorStatus($lang['common_userUnknownOrPasswordWrong']);
}
}
// Choose content for page.
if (session_is_registered("loginid")) {
if (!isset($HTTP_SESSION_VARS['loginid']) || $HTTP_SESSION_VARS['loginid'] == "") {
echo "<b>" . $lang['common_unableToFindloginInSession'] . "</b><br>";
// could not save session -> give up
exit;
}
// activate user
$loginInst->activate($HTTP_SESSION_VARS['loginid']);
// determine actual page
if (tool::secureGet("content") && eregi("php\$", tool::secureGet("content")) && !eregi("http", tool::secureGet("content"))) {
if (!file_exists(tool::secureGet("content"))) {
// given file does not exist