本文整理汇总了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');
}
}