本文整理匯總了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;
}