本文整理匯總了PHP中Q::cookie方法的典型用法代碼示例。如果您正苦於以下問題:PHP Q::cookie方法的具體用法?PHP Q::cookie怎麽用?PHP Q::cookie使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Q
的用法示例。
在下文中一共展示了Q::cookie方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: clearCookie
public static final function clearCookie()
{
Q::cookie('l', null, 0);
self::$cookie = false;
}
示例2: requireHTTPAuth
/**
* Requires HTTP Authentication. Execution dies after authentication fails.
*
* @param string $message Message displayed to the user
* @param array $creds An associative array of username => sha1(password) pairs.
* @param callback $failure A callback method that is called if authentication fails.
*/
public static function requireHTTPAuth($message, $creds, $failure = null)
{
//if(isset($_COOKIE['auth'])) return true;
if (isset($_SERVER['PHP_AUTH_USER'])) {
if (isset($creds[$_SERVER['PHP_AUTH_USER']]) && sha1($_SERVER['PHP_AUTH_PW']) == $creds[$_SERVER['PHP_AUTH_USER']]) {
Q::cookie('auth', 1, 10000000);
return true;
} else {
header("WWW-Authenticate: Basic realm=\"{$message}\"", null, 401);
if ($failure) {
call_user_func($failure);
}
die;
}
} else {
header("WWW-Authenticate: Basic realm=\"{$message}\"", null, 401);
die('Forbidden');
}
}