本文整理汇总了PHP中GWF_Session::exists方法的典型用法代码示例。如果您正苦于以下问题:PHP GWF_Session::exists方法的具体用法?PHP GWF_Session::exists怎么用?PHP GWF_Session::exists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GWF_Session
的用法示例。
在下文中一共展示了GWF_Session::exists方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: zreloadAppendToShell
function zreloadAppendToShell($shellid, $input, $withPrompt = false, $withXSS = false)
{
global $prompt, $noresponse;
if ($withPrompt) {
// $shellcfg = zreloadGetShellConfig($shellid);
// $prompt = $shellcfg[1];
$input = $prompt . ' ' . $input;
}
if (!$withXSS) {
$input = htmlspecialchars($input);
# $input = nl2br($input);
}
$sessname = 'zreload_shell_' . $shellid;
if (!GWF_Session::exists($sessname)) {
GWF_Session::set($sessname, array());
}
/* if ($noresponse === true) {
$input = 'Authentication failed.';
}*/
$input = explode(PHP_EOL, $input);
GWF_Session::set($sessname, array_merge(GWF_Session::get($sessname), $input));
}
示例2: validateToken
/**
* Validate token from get or post data.
* @param array $array
* @return $userdata
*/
public static function validateToken()
{
# POST or GET?
if (count($_POST) > 1) {
# Sometimes there is one var in the POST Oo
$array =& $_POST;
} else {
$array =& $_GET;
}
if (count($array) > 0) {
if (!isset($array[self::TOKEN_NAME]) || !is_string($array[self::TOKEN_NAME])) {
return false;
}
if (!GWF_Session::exists(self::TOKEN_NAME)) {
return false;
}
$token = $array[self::TOKEN_NAME];
$tokens =& GWF_Session::get(self::TOKEN_NAME);
foreach ($tokens as $id => $d) {
if (intval($d[0], 10) < time() - 7200) {
unset($tokens[$id]);
} elseif ($id === $token) {
$back = (string) $d[1];
unset($tokens[$id]);
unset($array[self::TOKEN_NAME]);
return $back;
}
}
return false;
}
return true;
}