首页 > 开发 > PHP > 正文

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

2024-05-04 22:04:14
字体:
来源:转载
供稿:网友

我们在开发API接口,经常需要使用PHP编写API接口,其实在PHP编写接口后,前台可以通过链接获取接口提供的数据,感兴趣的话就随错新技术频道小编一起来了解PHP网页安全认证的实例详解。

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

 不基于数据库:

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网页安全认证的实例详解,希望对大家有所帮助!如果你已经知道怎么学习,那就赶快行动起来吧!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表