来自官方文档的 PHP 代码的 HTTP 身份验证无法正常工作

HTTP authentication with PHP code from official docu not working properly

我的网站需要一个验证方法,我在官方手册上找到了这个article并尝试了。

<?php
$realm = 'Restricted area';

//user => password
$users = array('admin' => 'mypass', 'guest' => 'guest');


if (empty($_SERVER['PHP_AUTH_DIGEST'])) {
    header('HTTP/1.1 401 Unauthorized');
    header('WWW-Authenticate: Digest realm="'.$realm.
           '",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"');

    die('Text to send if user hits Cancel button');
}

if  // analyze the PHP_AUTH_DIGEST variable
(
    !($data = http_digest_parse($_SERVER['PHP_AUTH_DIGEST']))   ||
    !isset($users[$data['username']])
)
{
    die('Wrong Credentials!');
}    

// generate the valid response
$A1 = md5($data['username'] . ':' . $realm . ':' . $users[$data['username']]);
$A2 = md5($_SERVER['REQUEST_METHOD'].':'.$data['uri']);
$valid_response = md5($A1.':'.$data['nonce'].':'.$data['nc'].':'.$data['cnonce'].':'.$data['qop'].':'.$A2);

if ($data['response'] != $valid_response)
    die('Wrong Credentials!');

// ok, valid username & password
echo 'You are logged in as: ' . $data['username'];


// function to parse the http auth header
function http_digest_parse($txt)
{
    // protect against missing data
    $needed_parts = array('nonce'=>1, 'nc'=>1, 'cnonce'=>1, 'qop'=>1, 'username'=>1, 'uri'=>1, 'response'=>1);
    $data = array();
    $keys = implode('|', array_keys($needed_parts));

    preg_match_all('@(' . $keys . ')=(?:([\'"])([^]+?)|([^\s,]+))@', $txt, $matches, PREG_SET_ORDER);

    foreach ($matches as $m) {
        $data[$m[1]] = $m[3] ? $m[3] : $m[4];
        unset($needed_parts[$m[1]]);
    }

    return $needed_parts ? false : $data;
}
?>

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
</head>
<body>
    <p>Test</p> 
</body>
</html>

但是,如果我未能输入正确的凭据,那么即使在重新加载之后,我也会一直得到 Wrong Credentials!,并且不再出现登录提示。这是什么原因,我该如何解决?

浏览器在新请求中再次发送之前提供的凭据。要向浏览器询问新凭据,您需要重新发送 WWW-Authenticate header。在 die().

之前

像这样:

if  // analyze the PHP_AUTH_DIGEST variable (
    !($data = http_digest_parse($_SERVER['PHP_AUTH_DIGEST']))   ||
    !isset($users[$data['username']]) ) {
    header('WWW-Authenticate: Digest realm="'.$realm.
           '",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"');
        die('Wrong Credentials!');
}

if ($data['response'] != $valid_response) {
    header('WWW-Authenticate: Digest realm="'.$realm.
               '",qop="auth",nonce="'.uniqid().'",opaque="'.md5($realm).'"');
    die('Wrong Credentials!');
}