Http身份验证,取消循环

时间:2016-04-29 19:45:50

标签: php http authentication http-basic-authentication

<?php
    if (!isset($_SERVER['PHP_AUTH_USER'])) {
        header('WWW-Authenticate: Basic realm="My Realm"');
        header('HTTP/1.0 401 Unauthorized');
        echo 'Text to send if user hits Cancel button';
        exit;
    } else {
        echo "<p>Hello {$_SERVER['PHP_AUTH_USER']}.</p>";
        echo "<p>You entered {$_SERVER['PHP_AUTH_PW']} as your password.</p>";
    }
?>

我使用的代码只是要求用户名和密码进行身份验证,但问题是当用户点击取消按钮时,应该一次又一次地给出身份验证提示,直到没有提供正确的用户名和密码。

2 个答案:

答案 0 :(得分:3)

假设您的客户都拥有JavaScript,可以实施一个简单的修复。

而不是echo 'Text to send if user hits Cancel button';

echo '<script>window.location.reload();</script>';

答案 1 :(得分:0)

我认为

((grid[i][j] != null) && (grid[i][j].length() > 0))

可以在php中运行