• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php实现网页安全认证的代码详解

php 搞代码 4年前 (2022-01-22) 22次浏览 已收录 0个评论

这篇文章主要介绍了PHP网页安全认证的实例详解的相关资料,这里提供了两种实现方法,一种基于数据库另一种不基于数据库的方法,希望通过本能帮助到大家,需要的朋友可@本文来源gaodai$ma#com搞$代*码6网搞代gaodaima码以参考下

PHP网页安全认证的实例详解

不基于数据库:

<?php    //unset($_SERVER['PHP_AUTH_USER']);    $strAuthUser= $_SERVER['PHP_AUTH_USER'];          $strAuthPass= $_SERVER['PHP_AUTH_PW']; if (! ($strAuthUser == "a" && $strAuthPass == "a")) {  header('WWW-Authenticate: Basic realm="wly"');  header('HTTP/1.0 401 Unauthorized');  echo "用户验证!!";  exit; } else {  echo "验证通过";    header("location:http://www.baidu.com");  //unset($_SERVER['PHP_AUTH_USER']);   }?>

基于数据库:

<?php  function authenticate_user() {    header('WWW-Authenticate: Basic realm="Secret Stash"');   header("HTTP/1.0 401 Unauthorized");    exit;  }   if (! isset($_SERVER['PHP_AUTH_USER'])) {    authenticate_user();  } else {    mysql_pconnect("localhost","authenticator","secret") or die("Can't connect to database server!");    mysql_select_db("java2s") or die("Can't select authentication database!");    $query = "SELECT username, pswd FROM user WHERE username='$_SERVER[PHP_AUTH_USER]' AND pswd=MD5('$_SERVER[PHP_AUTH_PW]')";     $result = mysql_query($query);     // If nothing was found, reprompt the user for the login information.    if (mysql_num_rows($result) == 0) {     authenticate_user();    }  } ?>

以上就是php实现网页安全认证的代码详解的详细内容,更多请关注搞代码gaodaima其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php实现网页安全认证的代码详解
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址