当前位置 : 主页 > 网络编程 > PHP >

php 设置浏览网页时验证

来源:互联网 收集:自由互联 发布时间:2021-06-30
if (($_SERVER['PHP_AUTH_USER'] != 'specialuser') || ($_SERVER['PHP_AUTH_PW'] != 'secretpassword')) { header('WWW-Authenticate: Basic Realm="Secret Stash"'); header('HTTP/1.0 401 Unauthorized'); print('You must provide the proper credentials
 
if (($_SERVER['PHP_AUTH_USER'] != 'specialuser') || ($_SERVER['PHP_AUTH_PW'] != 'secretpassword')) {
   header('WWW-Authenticate: Basic Realm="Secret Stash"');
   header('HTTP/1.0 401 Unauthorized');
   print('You must provide the proper credentials!');
   exit;
}else{
    echo 'ok';
}

网友评论